-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.56 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
{
"author": "Andrew Abramov <[email protected]>",
"description": "BEM.I18N support for ENB",
"name": "enb-bem-i18n",
"version": "1.1.1",
"repository": "git://github.com/enb/enb-bem-i18n",
"homepage": "https://github.com/enb/enb-bem-i18n",
"bugs": "https://github.com/enb/enb-bem-i18n/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-bem-i18n/blob/master/LICENSE.txt"
}
],
"contributors": [
{
"name": "Andrew Abramov",
"email": "[email protected]"
},
{
"name": "Marat Dulin",
"email": "[email protected]"
},
{
"name": "Andrey Kuznetsov",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">= 0.15.0 < 2.0.0"
},
"dependencies": {
"clear-require": "1.0.1",
"dom-js": "0.0.9",
"enb-async-require": "1.0.1",
"serialize-javascript": "1.1.2",
"vow": "0.4.11"
},
"devDependencies": {
"bower": "1.5.3",
"chai": "3.3.0",
"enb": ">= 0.15.0 < 2.0.0",
"istanbul": "0.3.22",
"jscs": "1.13.1",
"jshint": "2.8.0",
"mocha": "2.3.3",
"mock-enb": "0.3.0",
"mock-fs": "3.3.0",
"must": "0.13.1"
},
"scripts": {
"deps": "bower i",
"test": "npm run lint && npm run unit",
"lint": "jshint . && jscs -c .jscs.js .",
"unit": "npm run deps && mocha -R spec",
"cover": "istanbul cover _mocha",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}