forked from stanford-oval/thingtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "thingtalk",
"version": "1.6.1",
"description": "ThingTalk Just-In-Time Compiler, Library and Runtime",
"license": "GPL-3.0+",
"repository": "https://github.com/stanford-oval/ThingTalk",
"author": "Stanford University Mobile and Social Computing Lab",
"contributors": [
{
"name": "Giovanni Campagna",
"email": "gcampagn@cs.stanford.edu"
}
],
"main": "index.js",
"bin": {
"thingtalk-generate-parser": "./tools/generate-parser/index.js"
},
"dependencies": {
"adt": "~0.7.2",
"byline": "^5.0.0",
"consumer-queue": "^1.0.0",
"smtlib": "^0.1.1"
},
"devDependencies": {
"argparse": "^1.0.10",
"coveralls": "^3.0.0",
"csv": "^5.0.0",
"deep-equal": "^1.0.1",
"eslint": "^5.3.0",
"nyc": "^14.0.0",
"pegjs": "~0.10.0",
"q": "^1.5.1",
"seedrandom": "^3.0.0"
},
"scripts": {
"update-pot": "xgettext -f po/POTFILES -x po/POTFILES.skip -o po/${npm_package_name}.pot --from-code UTF-8 --package-name ${npm_package_name} --package-version ${npm_package_version}",
"update-po": "for i in po/*.po ; do msgmerge -U $i po/${npm_package_name}.pot ; done",
"lint": "eslint ./lib",
"test": "nyc node ./test/test_all",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "make"
},
"nyc": {
"exclude": [
"lib/grammar.js",
"test/**",
"coverage/**"
]
}
}