forked from enb/enb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.88 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
{
"author" : "Marat Dulin <mdevils@yandex.ru>",
"description" : "Faster BEM tools",
"name" : "enb",
"version" : "0.8.36",
"repository" : "https://github.com/enb-make/enb",
"contributors" : [
{
"name": "Marat Dulin",
"email": "mdevils@yandex.ru"
},
{
"name": "BEM Tools",
"url": "http://bem.info"
}
],
"engines" : {
"node": ">= 0.8.0"
},
"dependencies" : {
"vow": ">=0.3.9",
"vow-fs": ">=0.2.2",
"inherit": ">=1.0.4",
"stylus": "0.32.1",
"dom-js": "0.0.9",
"express": "3.1.0",
"commander": "1.1.1",
"csso": "1.3.7",
"uglify-js": "~1.3.0",
"mime": "1.2.9",
"sibling": ">=0.0.3",
"borschik": "0.3.3",
"madify": ">=0.0.1",
"mad": ">=0.4.0",
"graceful-fs": "1.2.1",
"js-yaml": "2.1.0"
},
"devDependencies" : {
"jshint": "2.1.3",
"mocha": "1.11.0",
"sinon": "1.7.3",
"chai": "1.7.2",
"jscs": "0.0.12",
"bh": "0.1.14"
},
"bin" : {
"enb" : "./bin/enb"
},
"scripts": {
"test" : "npm run-script jshint && npm run-script check-style && npm run-script unit-test && npm run-script func-test",
"jshint": "./node_modules/.bin/jshint .",
"unit-test": "./node_modules/.bin/mocha -u bdd -R spec --recursive test/lib",
"func-test": "npm run-script bh-sym && npm run-script build-sample-proj &&./node_modules/.bin/mocha -u bdd -R spec --recursive test/func",
"bh-sym": "mkdir -p node_modules/bh/node_modules && rm -f node_modules/bh/node_modules/enb && ln -s ../../.. node_modules/bh/node_modules/enb",
"build-sample-proj": "cd test/fixtures/sample-project && ../../../bin/enb make -n --graph",
"check-style": "./node_modules/jscs/bin/jscs ."
}
}