-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "postcss-copy-assets",
"version": "0.3.1",
"description": "PostCSS plugin to copy assets referenced by relative url()s into a build directory.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"assets"
],
"author": "Alex McHardy <amchardy@shutterstock.com>",
"license": "MIT",
"repository": "https://github.com/shutterstock/postcss-copy-assets",
"bugs": {
"url": "https://github.com/shutterstock/postcss-copy-assets/issues"
},
"homepage": "https://github.com/shutterstock/postcss-copy-assets",
"dependencies": {
"mkdirp": "^0.5.1",
"postcss": "^5.0.2"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^3.18.0",
"eslint-config-postcss": "^2.0.2",
"mocha": "^3.2.0",
"mock-fs": "^3.1.0"
},
"scripts": {
"build": "npm run lint && npm test",
"lint": "eslint --format stylish index.js test/*.js",
"test": "mocha test/*.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"mocha": true
}
}
}