-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
{
"name": "postcss-atomised",
"version": "0.3.2",
"description": "PostCSS plugin that creates an atomised stylesheet from the input CSS, and provides a json map from the original classes to the atomic ones.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sndrs/postcss-atomised.git"
},
"author": "Alex Sanders <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sndrs/postcss-atomised/issues"
},
"homepage": "https://github.com/sndrs/postcss-atomised#readme",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"atomic",
"atomic-css"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"chalk": "^1.1.3",
"css-mqpacker": "^5.0.1",
"cssstats": "^3.0.0-beta.1",
"lodash.isequal": "^4.3.1",
"lodash.isstring": "^4.0.1",
"lodash.uniqby": "^4.5.0",
"mkdirp": "^0.5.1",
"parse-css-font": "^2.0.2",
"parse-css-sides": "^2.0.0",
"pify": "^2.3.0",
"postcss": "^5.2.0",
"postcss-resolve-prop": "^3.1.0",
"postcss-selector-parser": "^2.1.1",
"pretty-bytes": "^4.0.2",
"shorthash": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-register": "^6.9.0",
"coveralls": "^2.11.9",
"del": "^2.2.2",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"globby": "^6.0.0",
"jest": "^17.0.3",
"perfectionist": "^2.1.3",
"phantom": "^3.1.0",
"postcss-reporter": "^2.0.0",
"replace-classes": "^1.0.0",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.6.1"
},
"scripts": {
"start": "npm test -- --watch",
"build": "rm -rf build && rollup -c",
"prepublish": "npm run build",
"postpublish": "rm -rf build && git push --follow-tags",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test": "npm run lint && jest --verbose --coverage",
"lint": "eslint ."
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/build",
"<rootDir>/coverage",
"__helpers__"
]
}
}