forked from bem-sdk-archive/bem-decl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "bem-decl",
"version": "0.3.0",
"description": "Manage declaration of BEM entities",
"keywords": [
"bem",
"declaration",
"entities",
"merge",
"normalize",
"subtract",
"bemdecl"
],
"author": "Andrew Abramov <[email protected]> (github.com/blond)",
"license": "MPL-2.0",
"repository": "bem-sdk/bem-decl",
"homepage": "https://github.com/bem-sdk/bem-decl",
"bugs": "https://github.com/bem-sdk/bem-decl/issues",
"engines": {
"node": ">= 4"
},
"files": [
"lib/**"
],
"dependencies": {
"bem-naming": "1.0.1",
"es6-promisify": "5.0.0",
"graceful-fs": "4.1.11",
"node-eval": "1.0.4"
},
"devDependencies": {
"ava": "^0.17.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": {
"lint": "eslint . && jscs .",
"pretest": "npm run lint",
"test": "nyc ava",
"bench": "matcha benchmark/*.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}