-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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
{
"name": "rpscript-parser",
"version": "0.5.34",
"description": "Parser for RP Script",
"keywords": [
"api",
"rpa",
"rpscript"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "Apache-2.0",
"author": "James Chong",
"repository": {
"type": "git",
"url": "https://github.com/wei3hua2/rpscript-parser.git"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc && mv src/lib build/lib",
"start": "node ./build/index.js",
"test": "mocha -r ts-node/register test/**.ts",
"antlr4ts": "antlr4ts src/antlr/grammar/RPScript.g4"
},
"dependencies": {
"antlr4ts": "^0.4.1-alpha.0",
"configstore": "^3.1.2",
"deasync-promise": "^1.0.1",
"didyoumean2": "^1.3.0",
"rpscript-interface": "^0.6.0",
"shelljs": "^0.8.2",
"ts-deferred": "^1.0.4"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/configstore": "^2.1.1",
"@types/jasmine": "^2.8.8",
"@types/mocha": "^5.2.0",
"@types/node": "^10.3.5",
"@types/shelljs": "^0.8.0",
"antlr4ts-cli": "^0.4.0-alpha.4",
"chai": "^4.1.2",
"jasmine": "^3.1.0",
"mocha": "^5.2.0",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
}
}