-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
61 lines (61 loc) · 2 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
{
"author": "Andrew Abramov <[email protected]>",
"name": "enb-bem-specs",
"version": "0.11.1",
"description": "BEM specs for ENB",
"repository": "git://github.com/enb/enb-bem-specs",
"homepage": "https://github.com/enb/enb-bem-specs",
"bugs": "https://github.com/enb/enb-bem-specs/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-bem-specs/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">= 0.13.0 < 2.0.0",
"enb-magic-factory": ">= 0.3.0 < 1.0.0"
},
"dependencies": {
"bem-naming": "1.0.1",
"borschik-tech-istanbul": "0.3.0",
"enb-bem-i18n": "1.1.1",
"enb-bem-pseudo-levels": "0.4.0",
"enb-bem-techs": "2.2.1",
"enb-bemxjst": "2.2.0",
"enb-borschik": "2.4.0",
"enb-js": "1.1.0",
"enb-stylus": "2.4.0",
"inherit": "2.2.6",
"istanbul": "0.4.5",
"lodash": "4.16.1",
"mocha-phantomjs": "3.5.3",
"phantomjs": "1.9.20",
"vow": "0.4.12",
"ym": "0.1.2"
},
"devDependencies": {
"bower": "^1.7.9",
"enb": ">= 0.13.0 < 2.0.0",
"enb-bh": "^1.2.0",
"enb-magic-factory": ">= 0.3.0 < 1.0.0",
"enb-postcss": "^1.1.0",
"eslint": "^3.5.0",
"eslint-config-pedant": "^0.8.0",
"jscs": "^3.0.7",
"postcss-import": "^8.1.2"
},
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run test-silly",
"lint": "eslint . && jscs .",
"test-silly": "npm run clean && npm run fixtures && npm run build-examples && npm run clean && npm run build-examples-coverage",
"fixtures": "cd examples && bower i",
"build-examples": "enb -d examples/silly make __magic__ set.specs && enb -d examples/silly make specs-bh && enb -d examples/silly make specs-postcss",
"build-examples-coverage": "ISTANBUL_COVERAGE=yes npm run build-examples && istanbul report text --include examples/silly/coverage.json",
"clean": "rm -rf examples/*/set.* && rm -rf examples/*/.enb/tmp && rm -rf examples/*/coverage.json"
}
}