forked from kss-node/kss-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"author": "Hugh Kennedy <[email protected]> (http://hughskennedy.com)",
"name": "kss",
"description": "The Node.js port of KSS: A methodology for documenting CSS and generating style guides",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "git://github.com/kss-node/kss-node.git"
},
"license": "(MIT OR GPL-2.0)",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha",
"posttest": "eslint bin/kss-node .",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"docs": "make docs"
},
"bin": {
"kss-node": "./bin/kss-node"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"glob": "^4.0.6",
"handlebars": "^3.0.0 || ^2.0.0",
"marked": "^0.3.2",
"mkdirp": "^0.5.1",
"natural": "^0.1.28",
"wrench": "^1.5.8",
"yargs": "^3.8.0"
},
"devDependencies": {
"coveralls": "^2.11.3",
"eslint": "^1.2.0",
"istanbul": "^0.3.17",
"jsdoc": "^3.3.2",
"mocha": "^2.2.5",
"should": "^7.0.1"
},
"homepage": "http://kss-node.github.io/kss-node"
}