-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 900 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
{
"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"
},
"files": [
"src",
"dist"
],
"keywords": [
"bem",
"css",
"generator"
],
"author": "Guilherme Nagatomo <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.18.0",
"eslint-plugin-mocha": "^4.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
},
"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"
}