-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "postcss-copy",
"version": "7.1.0",
"description": "A postcss plugin to copy all assets referenced in CSS to a custom destination folder and updating the URLs.",
"main": "dist/index.js",
"dependencies": {
"micromatch": "^3.0.3",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"postcss": "^6.0.3",
"postcss-value-parser": "^3.3.0"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"coveralls": "^2.13.1",
"del-cli": "^1.1.0",
"escape-string-regexp": "^1.0.4",
"eslint": "^4.1.1",
"eslint-config-postcss": "^2.0.0",
"eslint-config-tinchoz49": "^2.1.0",
"hasha": "^3.0.0",
"nyc": "^11.0.3",
"path-exists": "^3.0.0"
},
"files": [
"dist"
],
"scripts": {
"pretest": "del-cli src/__tests__/dest",
"test": "ava --verbose --no-cache",
"posttest": "eslint src",
"nycreport": "nyc npm test",
"coverage": "npm run nycreport && nyc report --reporter=text-lcov | coveralls",
"build": "del-cli dist && babel src --out-dir dist --ignore __tests__",
"start": "babel src --watch --source-maps --out-dir dist --ignore __tests__",
"prepublish": "npm run test && npm run build",
"version": "chan release ${npm_package_version} && git add ."
},
"eslintConfig": {
"extends": "tinchoz49"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign",
"add-module-exports"
]
},
"ava": {
"require": "babel-register",
"files": [
"src/__tests__/*.js"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"src/__tests__/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/postcss-copy.git"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"copy",
"assets"
],
"author": "Geut <geut.studio@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/postcss-copy/issues"
},
"homepage": "https://github.com/geut/postcss-copy#readme"
}