-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.86 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
{
"author": "Andrew Abramov <[email protected]>",
"name": "enb-bem-tmpl-specs",
"version": "1.3.2",
"description": "BEM template specs for ENB",
"repository": "git://github.com/enb/enb-bem-tmpl-specs",
"homepage": "https://github.com/enb/enb-bem-tmpl-specs",
"bugs": "https://github.com/enb/enb-bem-tmpl-specs/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-bem-tmpl-specs/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">= 0.15.0 < 2.0.0",
"enb-magic-factory": ">= 0.3.0 < 1.0.0"
},
"dependencies": {
"bem-naming": "1.0.1",
"clear-require": "1.0.1",
"deep-diff": "^0.3.8",
"deep-diff-highlight": "^0.1.0",
"enb-bem-i18n": "1.1.1",
"enb-bem-pseudo-levels": "0.4.0",
"enb-bem-techs": "2.2.2",
"enb-require-or-eval": "1.0.2",
"enb-source-map": "1.10.0",
"html-differ": "1.3.4",
"inherit": "2.2.6",
"istanbul": "0.4.5",
"jade": "1.11.0",
"js-beautify": "1.6.12",
"lodash": "4.17.4",
"minimatch": "3.0.3",
"mocha": "3.2.0",
"mocha-teamcity-reporter": "1.1.1",
"stringify-object": "^3.2.0",
"vow": "0.4.15",
"vow-fs": "0.3.6"
},
"devDependencies": {
"bower": "^1.7.9",
"enb": ">=1.3.0",
"enb-bemxjst": "^8.0.0",
"enb-bh": "^1.2.0",
"enb-magic-factory": ">= 0.3.0 < 1.0.0",
"jscs": "^3.0.7",
"jshint": "^2.9.2",
"must": "^0.13.1"
},
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run clean && npm run build",
"lint": "jshint . && jscs -c .jscs.js .",
"deps": "cd examples && bower i",
"build": "enb -d examples/silly make tmpl-specs-with-coverage && enb -d examples/silly make tmpl-specs-without-coverage",
"clean": "rm -rf examples/*/*tmpl-specs && rm -rf examples/*/.enb/tmp && rm -rf coverage"
}
}