forked from bem-sdk-archive/bemjson-to-decl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 985 Bytes
/
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
{
"name": "bemjson-to-decl",
"version": "1.0.1",
"description": "BEMJSON to BEMDECL helper",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"specs": "mocha tests",
"cover": "nyc mocha tests",
"test": "npm run specs",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/bem-sdk/bemjson-to-decl.git"
},
"keywords": [
"BEM",
"bem",
"bemjson",
"deps",
"converter"
],
"author": "Vladimir Grinenko",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/bem-sdk/bemjson-to-decl/issues"
},
"engines": {
"node": ">= 4.0"
},
"homepage": "https://github.com/bem-sdk/bemjson-to-decl",
"dependencies": {
"@bem/entity-name": "^1.3.1",
"bem-decl": "^0.3.0",
"stringify-object": "^2.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.0.0",
"eslint-config-pedant": "^0.8.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2"
}
}