forked from mscheibe/kss-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
57
{
"name": "kss",
"version": "3.0.0-beta.14",
"description": "The Node.js port of KSS: A methodology for documenting CSS and building style guides",
"homepage": "http://kss-node.github.io/kss-node",
"bugs": {
"url": "https://github.com/kss-node/kss-node/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/kss-node/kss-node.git"
},
"author": "John Albin Wilkins <[email protected]> (http://john.albin.net/)",
"keywords": [
"styleguide",
"kss",
"kss-node"
],
"main": "index.js",
"directories": {
"bin": "bin",
"example": "demo",
"test": "test"
},
"scripts": {
"test": "istanbul cover _mocha",
"posttest": "eslint bin/kss bin/kss-node .",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"docs": "make docs"
},
"license": "(MIT OR GPL-2.0)",
"dependencies": {
"bluebird": "^3.3.3",
"fs-extra": "^0.30.0",
"glob": "^7.0.3",
"handlebars": "^4.0.0",
"marked": "^0.3.5",
"twig": "^0.9.5",
"yargs": "^3.30.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.10.2",
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"mocha": "^2.5.1",
"mock-utf8-stream": "^0.1.1"
},
"bin": {
"kss": "./bin/kss",
"kss-node": "./bin/kss-node"
},
"engines": {
"node": ">=4.0"
}
}