-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1004 Bytes
/
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
{
"name": "@seiyria/rootlog-parser",
"version": "1.4.0",
"description": "A parser to parse Rootlog games.",
"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 test/**/*.spec.ts",
"test:rootlog": "ts-node test/rootlog.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vagabottos/RootlogParser.git"
},
"keywords": [
"root",
"boardgame",
"rootlog",
"tts",
"parser"
],
"author": "Kyle Kemp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vagabottos/RootlogParser/issues"
},
"homepage": "https://github.com/Vagabottos/RootlogParser#readme",
"devDependencies": {
"@types/node": "^9.4.6",
"ava-ts": "^0.24.2",
"awesome-typescript-loader": "^3.4.1",
"ts-node": "^4.1.0",
"typescript": "^4.1.2",
"webpack": "^3.12.0"
}
}