forked from uber-archive/idl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "idl",
"version": "3.1.12",
"description": "A CLI for managing thrift IDL files",
"keywords": [],
"contributors": [
"Andrew de Andrade <[email protected]>",
"Jake Verbaten <[email protected]>"
],
"repository": "git://github.com/uber-node/idl.git",
"main": "index",
"homepage": "https://github.com/uber-node/idl",
"bin": {
"idl": "bin/idl.js",
"idl-daemon": "bin/idl-daemon.js"
},
"bugs": {
"url": "https://github.com/uber-node/idl/issues",
"email": "[email protected]"
},
"dependencies": {
"camelcase-keys": "^1.0.0",
"chalk": "^1.1.1",
"cpr": "^0.4.1",
"debug-logtron": "4.1.0",
"deep-equal": "^1.0.0",
"error": "^7.0.2",
"graceful-fs": "^4.1.9",
"minimist": "1.1.1",
"mkdirp": "0.5.1",
"once": "^1.3.2",
"pascal-case": "^1.1.1",
"process": "0.11.1",
"rc": "^1.1.1",
"read-dir-files": "0.1.1",
"read-json": "^1.0.0",
"rimraf": "^2.3.4",
"run-parallel": "1.1.1",
"run-series": "1.1.1",
"splitargs": "0.0.3",
"string-length": "^1.0.1",
"string-template": "0.2.1",
"text-table": "0.2.0",
"time-ago": "^0.1.0",
"traverse": "^0.6.6",
"uniq": "^1.0.1",
"xtend": "4.0.0"
},
"devDependencies": {
"eslint": "1.8.0",
"eslint-config-perf-standard": "^2.1.1",
"eslint-plugin-perf-standard": "^1.0.3",
"fixtures-fs": "2.0.0",
"istanbul": "^0.3.5",
"opn": "^1.0.1",
"tape": "^3.4.0",
"tape-cluster": "2.0.0",
"time-mock": "0.1.2",
"timekeeper": "0.0.5",
"uber-licence": "^1.5.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/uber-node/idl/raw/master/LICENSE"
}
],
"scripts": {
"add-licence": "uber-licence",
"test": "npm run lint -s && npm run cover -s",
"unit-test": "node test/index.js",
"lint": "eslint . --config .eslintrc",
"cover": "istanbul cover --report html --print detail -- test/index.js && npm run check-cover -s",
"check-cover": "istanbul check-coverage --branches=100 --lines=100 --functions=100 || echo 'coverage failed'",
"view-cover": "opn ./coverage/index.html",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)"
},
"engine": {
"node": ">= 0.10.x"
},
"pre-commit": [
"test"
],
"pre-commit.silent": true,
"ngen-version": "5.1.0"
}