-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 KB
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
{
"name": "postcss-subtle",
"version": "1.1.0",
"description": "PostCSS plugin to automatically download and unzip images from subtlepatterns.com.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"image",
"subtle",
"subtlepatterns.com",
"patterns"
],
"author": "Andy Brummer <andybrummer@standardbeagle.com>",
"license": "MIT",
"repository": "standardbeagle/postcss-subtle",
"bugs": {
"url": "https://github.com/standardbeagle/postcss-subtle/issues"
},
"homepage": "https://github.com/standardbeagle/postcss-subtle",
"dependencies": {
"jszip": "3.1.3",
"kefir": "3.7.0",
"postcss": "^5.2.6",
"postcss-value-parser": "3.3.0",
"request": "2.79.0",
"url-join": "1.1.0"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "6.22.0",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-es2017": "6.22.0",
"eslint": "^3.12.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^18.0.0"
},
"scripts": {
"test": "jest",
"build": "babel src --out-dir lib --watch --sourceMaps=true"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
},
"babel": {
"presets": [
"es2017"
],
"plugins": [
"transform-runtime",
"transform-es2015-modules-commonjs"
]
}
}