-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 897 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
{
"name": "bem-generator",
"version": "2.0.0",
"description": "Generate BEM class names with ease",
"main": "src/index",
"scripts": {
"test": "eslint src/ test/ && mocha test/**/*.spec.js",
"posttest": "npm run coverage",
"coverage": "istanbul cover _mocha -- -R spec"
},
"keywords": [
"bem",
"css",
"generator"
],
"engines": {
"node": ">=7"
},
"author": "Guilherme Nagatomo <nagatomo.guilherme@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.1.0",
"eslint-plugin-mocha": "^6.0.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermehn/bem-generator.git"
},
"bugs": {
"url": "https://github.com/guilhermehn/bem-generator/issues"
},
"homepage": "https://github.com/guilhermehn/bem-generator#readme"
}