forked from BlessCSS/bless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "bless",
"version": "4.0.0-alpha.1",
"description": "CSS Post-Processor that chunks CSS files per IE9 selector count restrictions",
"url": "http://blesscss.com",
"keywords": [
"css",
"parser",
"less",
"sass",
"stylus",
"ie9",
"selector-limit"
],
"author": "Paul Young <[email protected]>",
"maintainers": [
"Matt Smith <[email protected]>",
"Alex Abenoja <[email protected]>"
],
"repository": "BlessCSS/bless",
"license": "MIT",
"bin": {
"blessc": "./bin/blessc"
},
"main": "./lib/index",
"directories": {
"test": "./test"
},
"engines": {
"node": ">=0.10.x"
},
"dependencies": {
"babel-runtime": "^5.1.11",
"colors": "^1.0.3",
"columnify": "^1.4.1",
"css": "^2.2.0",
"format-number": "1.0.2",
"fs-promise": "^0.3.1",
"lodash": "^3.6.0",
"rx": "^2.4.9",
"yargs": "^3.6.0"
},
"devDependencies": {
"babel": "^5.0.12",
"babel-eslint": "^3.0.1",
"chai": "^3.2.0",
"child-process-promise": "^1.1.0",
"coveralls": "^2.11.4",
"eslint": "^0.24.1",
"isparta": "^3.0.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.1"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "./run-tests",
"lint": "eslint ./",
"prepublish": "npm run test && npm run build"
}
}