-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
85 lines (85 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "enb-bem-techs",
"version": "2.2.2",
"description": "BEM methodology for ENB",
"keywords": [
"enb",
"bem",
"techs",
"levels",
"bemjson",
"bemdecl",
"deps",
"files"
],
"author": "Andrew Abramov <[email protected]>",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-bem-techs/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "[email protected]:enb/enb-bem-techs.git"
},
"homepage": "https://github.com/enb/enb-bem-techs",
"bugs": "https://github.com/enb/enb-bem-techs/issues",
"maintainers": [
{
"name": "Andrew Abramov",
"email": "[email protected]",
"github-username": "blond"
}
],
"contributors": [
"Andrew Abramov <[email protected]>",
"Marat Dulin <[email protected]>"
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">=0.15.0 <2.0.0"
},
"dependencies": {
"bem-naming": "1.0.1",
"clear-require": "1.0.1",
"enb-async-require": "1.0.1",
"enb-require-or-eval": "1.0.2",
"inherit": "2.2.6",
"js-yaml": "3.7.0",
"vow": "0.4.13"
},
"devDependencies": {
"enb": ">=0.15.0 <2.0.0",
"istanbul": "0.4.2",
"jscs": "2.8.0",
"jshint": "2.9.1",
"lodash": "4.0.0",
"matcha": "0.6.1",
"mocha": "2.3.4",
"mock-enb": "0.3.0",
"mock-fs": "3.6.0",
"must": "0.13.1",
"seedrandom": "2.4.2"
},
"main": "index.js",
"files": [
"lib/**",
"exlib/**",
"techs/**",
"index.js",
"LICENSE.txt"
],
"scripts": {
"test": "npm run lint && npm run unit && npm run generated-test",
"lint": "jshint . && jscs .",
"unit": "mocha -R spec test/unit test/techs",
"generated-test": "mocha -R spec test/generated/**",
"bench": "npm run bench-deps && matcha benchmark/*.js",
"bench-deps": "cd benchmark/fixtures && bower i",
"cover": "istanbul cover _mocha test/unit test/techs",
"coveralls": "npm i coveralls && npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}