-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "kss-handlebars",
"version": "3.0.0-beta.17",
"description": "A Handlebars.js-based builder for KSS 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-handlebars.git"
},
"author": "John Albin Wilkins <virtually.johnalbin@gmail.com> (http://john.albin.net/)",
"keywords": [
"styleguide",
"kss",
"kss-node",
"kss-builder"
],
"main": "builder/builder.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",
"sass": "./node_modules/.bin/node-sass --output-style compressed kss-assets/kss.scss kss-assets/kss.css"
},
"license": "(MIT OR GPL-2.0)",
"dependencies": {
"handlebars": "^4.0.0",
"kss": "^3.0.0-beta.16"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"mock-utf8-stream": "^0.1.1",
"node-sass": "^4.0.0"
},
"engines": {
"node": ">=4.0"
}
}