forked from bem/bem-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 935 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
{
"name": "@bem/naming",
"version": "2.0.0-3",
"description": "Manage naming of BEM entities",
"license": "MPL-2.0",
"author": "Andrew Abramov <[email protected]>",
"keywords": [
"bem",
"naming",
"entities",
"parse",
"stringify"
],
"repository": "bem-sdk/bem-naming",
"engines": {
"node": ">= 4.0"
},
"main": "index.js",
"files": [
"lib/**",
"index.js"
],
"dependencies": {
"@bem/entity-name": "1.1.0"
},
"devDependencies": {
"ava": "^0.18.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"eslint-config-pedant": "^0.8.0",
"jscs": "^3.0.3",
"matcha": "^0.7.0",
"nyc": "^10.0.0"
},
"scripts": {
"test": "npm run lint && npm run cover",
"lint": "eslint . && jscs -c .jscs.js .",
"unit-test": "ava",
"cover": "nyc ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"bench": "matcha benchmark/*.js"
}
}