-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1018 Bytes
/
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
{
"author": "Marat Dulin <[email protected]>",
"description": "Faster btjson -> html transformer.",
"name": "enb-bt",
"version": "3.1.0",
"repository": "https://github.com/enb-make/bt",
"contributors": [
{
"name": "Marat Dulin",
"email": "[email protected]"
},
{
"name": "Dmitry Filatov",
"email": "[email protected]"
}
],
"peerDependencies": {
"enb": ">= 0.8.22"
},
"dependencies": {
"enb-borschik" : "1.5.1",
"inherit": "~2.1.0",
"vow": "~0.3.9",
"enb-source-map": "^1.3.1"
},
"devDependencies": {
"mocha": "1.9.0",
"chai": "1.6.0",
"jshint": "2.1.x",
"jscs": "0.0.12"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "npm run-script jshint && npm run-script check-style && npm run-script unit-test",
"jshint": "./node_modules/.bin/jshint .",
"unit-test": "./node_modules/.bin/mocha -u bdd -R spec --recursive test",
"check-style": "./node_modules/jscs/bin/jscs ."
}
}