forked from azproduction/b_
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 884 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 884 Bytes
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
{
"name": "b_",
"version": "1.3.3",
"author": "Mikhail Davydov <i@azproduction.ru>",
"description": "BEM class name generator",
"license": "MIT",
"contributors": [
{
"name": "Mikhail Davydov",
"email": "i@azproduction.ru"
}
],
"keywords": [
"bem",
"naming",
"className",
"class",
"generator"
],
"repository": {
"type": "git",
"url": "git://github.com/azproduction/b_.git"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {},
"devDependencies": {
"jshint": "2.1.3",
"mocha": "~1.11.0",
"jscs": "~1.4.5",
"istanbul": "~0.2.11",
"chai": "*",
"husky": "~0.5.1"
},
"scripts": {
"test": "jshint . && jscs . && mocha -R spec",
"coverage": "istanbul cover node_modules/.bin/_mocha --report html -- -R spec",
"precommit": "npm test",
"prepush": "npm test"
}
}