-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "rapidquest",
"version": "0.0.8",
"description": "A typescript client API for the RapidQuest narration development system.",
"scripts": {
"clean": "rm -rf lib;tsc --build --clean",
"lint": "eslint . --ext .ts",
"build": "tsc --build",
"test": "ts-node src/test/test.ts",
"all": "npm run clean && npm run build && npm run lint && npm run test",
"pub": "npm publish --access public"
},
"types": "lib/rapidquest/client.d.ts",
"main": "lib/rapidquest/client.js",
"repository": {
"type": "git",
"url": "git+https://github.com/radiantone/rapidquest.git"
},
"keywords": [
"rapidquest",
"game design",
"narration editor",
"story design"
],
"devDependencies": {
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"commonjs": "0.0.1",
"nearley": "^2.20.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"author": "Darren Govoni",
"license": "MIT",
"bugs": {
"url": "https://github.com/radiantone/rapidquest/issues"
},
"homepage": "https://github.com/radiantone/rapidquest#readme",
"dependencies": {
"axios": "^0.21.1",
"eslint": "^7.17.0",
"i": "^0.3.6",
"inferencegraph": "^0.1.2"
}
}