-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "kale",
"description": "A JSON view templating and transformation library for both sides of your RESTful APIs.",
"version": "0.7.1",
"stability": "beta",
"main": "index.js",
"keywords": [
"api",
"view",
"template",
"json",
"rest",
"restful"
],
"engines": {
"node": ">= 0.10.26"
},
"dependencies": {
"cli-color": "^1.0.0",
"commander": "^2.8.1",
"glob": "^5.0.14",
"js-beautify": "^1.5.10",
"lodash": "^3.10.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.2",
"source-map": "^0.4.4"
},
"devDependencies": {
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"jison": "^0.4.15",
"mocha": "^2.2.5",
"should": "^7.0.2"
},
"bin": {
"kale": "./bin/kale.js"
},
"scripts": {
"test": "KALE_ENV=test mocha test",
"coverage": "KALE_ENV=test istanbul cover -x bin/kale.js -x src/ -x lib/parser.js node_modules/mocha/bin/_mocha test",
"coveralls": "KALE_ENV=test npm run coverage && cat ./coverage/lcov.info | coveralls",
"gen-parser": "./node_modules/.bin/jison src/grammar.jison src/tokens.jisonlex -o lib/parser.js -p lalr",
"prepublish": "npm run gen-parser"
},
"homepage": "https://github.com/jaylach/kale",
"bugs": "https://github.com/jaylach/kale/issues",
"repository": "https://github.com/jaylach/kale.git",
"author": "Jason LaChapelle <me@jlach.com>",
"contributors": [
"Jason LaChapelle <me@jlach.com>"
],
"license": "MIT"
}