forked from bemhint/bemhint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1014 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
38
39
40
41
42
43
44
{
"name": "bemhint",
"version": "0.7.0",
"description": "BEM hint",
"author": "Eugene Gavryushin <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/bemhint/bemhint.git"
},
"license": "MIT",
"bin": {
"bemhint": "./bin/bemhint"
},
"main": "lib/index.js",
"dependencies": {
"bem-naming": "^0.5.1",
"bem-walk": "^1.0.0-alpha1",
"chalk": "^1.1.1",
"coa": "^1.0.1",
"handlebars": "^4.0.5",
"inherit": "^2.2.2",
"lodash": "^3.10.1",
"minimatch": "^3.0.0",
"q": "^1.4.1",
"q-io": "^1.13.1",
"resolve": "^1.1.6",
"teamcity-service-messages": "^0.1.8",
"throw": "^1.0.0"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"jscs": "^2.6.0",
"jshint": "^2.9.1-rc1",
"mocha": "^2.3.2",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0"
},
"scripts": {
"lint": "jshint . && jscs .",
"test": "npm run lint && npm run unit",
"unit": "mocha test/"
}
}