-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "@seiyria/oath-parser",
"version": "1.0.8",
"description": "A parser to reverse-engineer Oath Board Game TTS savefiles.",
"main": "./dist/index.js",
"typings": "./dist/src/index.d.ts",
"registry": "npm",
"scripts": {
"prepare": "npm run build",
"build": "webpack --config webpack.config.js",
"test": "ava-ts src/**/*.spec.ts",
"test:savefile": "ts-node test/savefile.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seiyria/OathParser.git"
},
"keywords": [
"oath",
"boardgame",
"savefile",
"tts",
"tabletopsim",
"parser"
],
"author": "Kyle Kemp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seiyria/OathParser/issues"
},
"homepage": "https://github.com/seiyria/OathParser#readme",
"devDependencies": {
"@types/node": "^9.4.6",
"ava-ts": "^0.24.2",
"awesome-typescript-loader": "^3.4.1",
"ts-node": "^4.1.0",
"typescript": "^3.5.1",
"webpack": "^3.11.0"
}
}