-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.53 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
47
48
49
50
51
52
53
{
"name": "novaparse",
"version": "0.1.12",
"description": "An EV Nova file parser for NovaJS",
"main": "build/NovaParse.js",
"types": "build/NovaParse.d.ts",
"scripts": {
"build": "mkdir -p build/; tsc",
"test": "mocha -r ts-node/register -O tsconfig.json --recursive test/**/*.ts test/**/**/*.ts",
"test-brk": "mocha -r ts-node/register -O tsconfig.json --recursive --inspect-brk test/**/*.ts test/**/**/*.ts",
"test-only": "mocha -r ts-node/register -O tsconfig.json",
"test-only-brk": "mocha -r ts-node/register -O tsconfig.json --inspect-brk",
"clean": "rm -r build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattsoulanille/NovaParse.git"
},
"keywords": [
"EV",
"Nova",
"escape",
"velocity"
],
"author": "Matthew Soulanille",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattsoulanille/NovaParse/issues"
},
"homepage": "https://github.com/mattsoulanille/NovaParse#readme",
"dependencies": {
"@types/pngjs": "^3.3.2",
"hull.js": "^0.2.10",
"novadatainterface": "^0.1.5",
"pngjs": "^3.3.3",
"resourceforkjs": "^0.1.0",
"stringview": "^2.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.2",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"repl": "^0.1.3",
"ts-node": "^7.0.1",
"typescript": "^3.4.1"
}
}