-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ed-forge",
"version": "1.4.0",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"repository": "git@github.com:felixlinker/ed-forge.git",
"author": "felixlinker <linkerfelix@gmail.com>",
"license": "MIT",
"watch": {
"build_light": {
"patterns": [
"src"
],
"extensions": "ts,json",
"runOnChangeOnly": true
}
},
"jest": {
"testEnvironment": "./tests/environment.ts",
"testPathIgnorePatterns": [
"/lib/",
"/node_modules/"
],
"testEnvironmentOptions": {
"suites": [
{
"name": "Anaconda",
"build": "./tests/fixtures/anaconda.json"
},
{
"name": "AllianceChieftain",
"build": "./tests/fixtures/chieftain.json"
},
{
"name": "FerDeLance",
"build": "./tests/fixtures/fdl.json"
},
{
"name": "KraitMkII",
"build": "./tests/fixtures/krait.json"
}
]
},
"preset": "ts-jest"
},
"scripts": {
"build": "node coriolis_mapper.js && npm run build_light",
"build_light": "tsc",
"docs": "typedoc --gitRevision master --name \"E:D Forge\" --out docs/ src/",
"prepublish": "npm run build",
"release": "np",
"test": "jest",
"watch": "npm run build && npm-watch build_light"
},
"dependencies": {
"ajv": "^6.5.4",
"auto-bind": "^1.2.1",
"coriolis-data": "github:edcd/coriolis-data#special-keys",
"i18next": "^13.0.0",
"jsdoc": "^3.5.5",
"lodash": "^4.17.11",
"lz-string": "^1.4.4",
"pako": "^1.0.6"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/auto-bind": "^1.2.0",
"@types/babel__core": "^7.0.4",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.18",
"@types/pako": "^1.0.0",
"jest": "^27.4.5",
"np": "^7.6.0",
"npm-watch": "^0.11.0",
"ts-jest": "^27.1.2",
"tslint": "^5.20.0",
"typedoc": "^0.22.10",
"typedoc-plugin-external-module-name": "^2.0.0",
"typescript": "^3.2.2"
}
}