-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 1.13 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
{
"author": "Andrew Abramov <[email protected]>",
"name": "enb-bem-examples",
"version": "1.0.2",
"description": "BEM examples for ENB",
"repository": "git://github.com/enb/enb-bem-examples",
"homepage": "https://github.com/enb/enb-bem-examples",
"bugs": "https://github.com/enb/enb-bem-examples/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-bem-examples/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",
"enb-bem-pseudo-levels": "0.4.0",
"vow": "0.4.15"
},
"devDependencies": {
"enb": ">= 0.15.0 < 2.0.0",
"enb-magic-factory": ">= 0.3.0 < 1.0.0",
"eslint": "^3.0.0",
"eslint-config-pedant": "^0.8.0",
"jscs": "^3.0.3"
},
"main": "lib/index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint . && jscs .",
"build": "enb -d examples/silly make __magic__ set.examples",
"clean": "rm -rf examples/*/*examples && rm -rf examples/*/.enb/tmp"
}
}