-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 816 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 816 Bytes
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
{
"name": "node-thrift-parser",
"version": "0.1.3",
"description": "Parse thrift IDL to an AST",
"main": "index.js",
"scripts": {
"build": "pegjs -o lib/parser.js --format commonjs lib/thrift.pegjs",
"test": "npm run build & ava test",
"test-update": "ava --update-snapshots",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"files": [
"lib",
"index.js"
],
"keywords": [
"thrift",
"parser",
"thrift parser",
"AST"
],
"author": {
"name": "leaves4j",
"email": "jiangq.leaves@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/leaves4j/node-thrift-parser.git"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.23.0",
"pegjs": "^0.10.0"
}
}