-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "arma-class-parser",
"version": "1.1.1",
"description": "Parse Armed Assault classes (like: session log, mission.sqm, ...)",
"keywords": [
"ArmA",
"Armed Assault",
"parser",
"Arma3"
],
"author": "Moritz Schmidt <[email protected]>",
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/*.map.js"
],
"main": "dist/class-parser",
"dependencies": {},
"repository": {
"type": "git",
"url": "http://github.com/fusselwurm/arma-class-parser.git"
},
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/node": "^12.0.0",
"codecov": "^3.7.2",
"jest": "^26.4.2",
"ts-loader": "^4.4.1",
"typescript": "^3.5.1",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8"
},
"scripts": {
"test": "tsc && jest --config jestconfig.json",
"build:amd": "tsc --module amd --outFile dist/class-parser.amd.js",
"build:web": "tsc && webpack -p && rm -r docs/dist",
"build": "tsc"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}