-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "suitcss-preprocessor",
"version": "4.0.0",
"description": "A CSS preprocessor for working with SUIT CSS",
"main": "lib/index.js",
"bin": {
"suitcss": "bin/suitcss"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"autoprefixer": "^6.7.7",
"chokidar": "^1.3.0",
"colors": "~1.1.2",
"commander": "~2.9.0",
"cssnano": "^3.3.2",
"fs-extra": "^2.1.2",
"is-promise": "^2.1.0",
"lodash.difference": "^4.0.2",
"lodash.isempty": "^4.1.1",
"object-assign-deep": "0.0.4",
"pad-component": "0.0.1",
"pify": "^2.3.0",
"postcss": "^5.2.17",
"postcss-apply": "^0.6.1",
"postcss-autoreset": "^1.2.0",
"postcss-bem-linter": "^2.3.0",
"postcss-calc": "^5.0.0",
"postcss-color-function": "^3.0.0",
"postcss-custom-media": "^5.0.0",
"postcss-custom-properties": "^5.0.0",
"postcss-easy-import": "^2.0.0",
"postcss-reporter": "^3.0.0",
"read-file-stdin": "^0.2.1",
"stylelint": "^7.10.1",
"stylelint-config-suitcss": "^11.0.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"browserify-css": "^0.10.0",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"computed-style": "^0.3.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"postcss-property-lookup": "^1.1.4",
"rewire": "^2.5.1",
"sinon": "^2.1.0",
"tape": "^4.6.2",
"tape-css": "^1.0.2-beta",
"tape-run": "^3.0.0"
},
"scripts": {
"test": "npm run mocha && npm run test:encapsulation",
"test:encapsulation": "browserify -t [ browserify-css --autoInject=false ] test/encapsulation/browser.js | tape-run",
"mocha": "mocha test/index.js --reporter spec --slow 400 --timeout 8000",
"posttest": "npm run lint",
"lint": "eslint lib test bin/suitcss",
"watch": "npm run mocha -- --watch"
},
"keywords": [
"css",
"preprocessor",
"stylelint",
"pure",
"postcss",
"suit"
],
"repository": "git://github.com/suitcss/preprocessor.git",
"license": "MIT"
}