-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "bless",
"version": "4.0.4",
"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": ">=4.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"chalk": "^1.1.3",
"columnify": "^1.4.1",
"css": "^2.2.0",
"format-number": "^2.0.1",
"fs-promise": "^0.5.0",
"lodash": "^4.6.1",
"rx": "^4.1.0",
"yargs": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-istanbul": "^0.6.0",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.2.0",
"child-process-promise": "^1.1.0",
"coveralls": "^2.11.4",
"eslint": "~2.2.0",
"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"
}
}