-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"author": "Marat Dulin <mdevils@yandex.ru>",
"description": "Faster BEM tools",
"name": "enb",
"version": "0.8.46",
"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": {
"inherit": "~2.1.0",
"vow": "~0.3.9",
"vow-fs": "~0.2.2",
"stylus": "0.40.x",
"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.4.0",
"madify": ">=0.0.1",
"mad": ">=0.4.0",
"graceful-fs": "1.2.1",
"js-yaml": "2.1.0",
"puml-link": "0.0.1"
},
"devDependencies": {
"jshint": "2.1.3",
"mocha": "1.11.0",
"sinon": "1.7.3",
"chai": "1.7.2",
"jscs": "~1.2.3",
"bh": "0.1.14",
"enb-validate-code": "0.0.1"
},
"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": "jshint .",
"unit-test": "mocha -u bdd -R spec --recursive test/lib",
"func-test": "npm run-script bh-sym && npm run-script build-sample-proj && 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": "jscs -c node_modules/enb-validate-code/jscs.json lib exlib techs test"
}
}