-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "@bem/naming",
"version": "2.0.0-6",
"description": "Manage naming of BEM entities",
"license": "MPL-2.0",
"author": "Andrew Abramov <mail@blond.im>",
"keywords": [
"bem",
"naming",
"entity",
"name",
"representation",
"parse",
"stringify",
"conventions",
"origin",
"react",
"two-dashes"
],
"repository": "bem-sdk/bem-naming",
"engines": {
"node": ">= 4.0"
},
"main": "index.js",
"files": [
"lib/**",
"index.js"
],
"dependencies": {
"@bem/entity-name": "1.5.0"
},
"devDependencies": {
"ava": "^0.19.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"eslint-config-pedant": "^0.9.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"
}
}