-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "generator-bem-stub",
"version": "0.12.0",
"description": "A generator of BEM projects",
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"bem-tools",
"bem",
"enb"
],
"homepage": "http://bem.info/tools/bem/bem-stub",
"bugs": "https://github.com/bem/generator-bem-stub/issues",
"author": {
"name": "Evgeniy Gavryushin",
"email": "[email protected]",
"url": "https://github.com/eGavr"
},
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/bem/generator-bem-stub.git"
},
"dependencies": {
"yeoman-generator": "0.18.5",
"shelljs": "0.3.0",
"lodash": "2.4.1",
"colors": "1.0.3"
},
"devDependencies": {
"mocha": "1.21.4",
"must": "0.12.0",
"istanbul": "0.3.0",
"jshint": "2.8.0",
"jscs": "1.5.9"
},
"peerDependencies": {
"yo": ">=1.0.0"
},
"scripts": {
"test": "npm run lint && npm run unit-test && npm run cover",
"lint": "jshint . && jscs -c .jscs.js .",
"unit-test": "mocha test/",
"cover": "istanbul cover _mocha -- test/"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT"
}
]
}