-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 909 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
{
"name": "enb-y-i18n",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"test": "npm run-script jshint && npm run-script check-style && npm run-script unit-tests",
"jshint": "jshint .",
"unit-tests": "mocha -u bdd -R spec --recursive test",
"check-style": "jscs -c node_modules/enb-validate-code/jscs.json lib test client"
},
"repository": {
"type": "git",
"url": "git://github.com/enb-make/enb-y-i18n.git"
},
"author": "Marat Dulin",
"license": "MIT",
"bugs": {
"url": "https://github.com/enb-make/enb-y-i18n/issues"
},
"homepage": "https://github.com/enb-make/enb-y-i18n",
"dependencies": {
"compact-tl": "0.0.3",
"vow": "~0.4.1"
},
"peerDependencies": {
"enb": ">=0.8.45"
},
"devDependencies": {
"jscs": "~1.2.4",
"jshint": "~2.4.2",
"chai": "~1.8.1",
"mocha": "~1.17.1",
"enb-validate-code": "0.0.1"
}
}