forked from kss-node/kss-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 901 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
{
"author": "Hugh Kennedy <[email protected]> (http://hughskennedy.com)",
"name": "kss",
"description": "NodeJS port of kss: A methodology for documenting CSS and generating styleguides",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/kss-node/kss-node.git"
},
"licence": "MIT",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha -u tdd --reporter spec"
},
"bin": {
"kss-node": "./bin/kss-node"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"marked": "0.1.x",
"natural": "0.0.65",
"handlebars": "1.3.x",
"wrench": "1.5.x",
"less": "1.x.x",
"stylus": "0.46.x",
"node-sass": "0.8.x",
"yargs": "1.x.x",
"clean-css": "2.x.x",
"async": "0.1.x"
},
"devDependencies": {
"mocha": "1.x"
},
"homepage": "http://kss-node.github.io/kss-node"
}