-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 1.03 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
{
"name": "rppp",
"version": "0.4.2",
"description": "Reaper .RPP Parser",
"main": "src/index.js",
"scripts": {
"test": "mocha ./tests",
"test-b64": "npm run gen && mocha ./tests/test-base64",
"gen-debug": "pegjs -o src/parser-debug.js --allowed-start-rules object,string,decimal,int,param,params,b64,js_data pegjs/initial.pegjs",
"gen-release": "pegjs -o src/parser.js pegjs/initial.pegjs",
"gen-types": "tsc 'src/index.js' --declaration --allowJs --emitDeclarationOnly --outDir types",
"gen": "npm run gen-debug && npm run gen-release && npm run gen-types",
"gen-and-test": "npm run gen-debug && npm run gen-release && npm run test",
"prepublishOnly": "npm run gen && npm run test"
},
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"mocha": "^10.0.0",
"pegjs": "^0.10.0",
"should": "^13.2.3",
"standard": "^16.0.4",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/charlesholbrow/rppp.git"
},
"types": "types/index.d.ts"
}