-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "n-thrift",
"version": "0.4.2",
"description": "Apache Thrift implementation with node js",
"main": "lib/index.js",
"scripts": {
"test": "nyc ava && rm -rf coverage && rm -rf .nyc_output",
"test-update": "ava --update-snapshots",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"bin": {
"node-thrift": "bin/node-thrift.js"
},
"files": [
"lib",
"bin"
],
"keywords": [
"thrift",
"node-thrift",
"compiler",
"thrift-compiler"
],
"repository": {
"type": "git",
"url": "https://github.com/leaves4j/n-thrift.git"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"common-bin": "^2.7.1",
"filehound": "^1.16.2",
"handlebars": "^4.0.11",
"handlebars-helpers": "^0.9.8",
"lodash.camelcase": "^4.3.0",
"lodash.set": "^4.3.2",
"mkdirp-promise": "^5.0.1",
"node-thrift-parser": "^0.1.3",
"thrift": "^0.10.0"
},
"devDependencies": {
"ava": "^0.23.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"lodash": "^4.17.4",
"nyc": "^11.2.1"
}
}