-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.75 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
{
"name": "agescx",
"version": "1.0.6",
"description": "Age of empires 2 scenario de/compress module for node and browser",
"main": "dist/Index.js",
"types": "dist/Index.d.ts",
"typings": "dist/Index.d.ts",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"collectCoverage": false,
"testEnvironment": "node"
},
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"@types/jasmine": "^2.8.9",
"@types/jsontoxml": "^1.0.0",
"@types/node": "^10.12.2",
"@types/yamljs": "^0.2.30",
"jsontoxml": "^1.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"chalk": "^2.4.1",
"jasmine": "^3.3.0",
"jasmine-ts": "^0.3.0",
"prettier": "^1.14.3",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"scripts": {
"test": "jasmine-ts packages/**/*.test.ts",
"lint": "prettier --write ./packages/**/*.ts",
"build": "npm test && npm run build:node && npm run build:web",
"build:node": "tsc",
"build:web": "webpack --mode production --config webpack.config.web.js",
"data": "ts-node ./scripts/ConvertData.script.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dderevjanik/agescx-js.git"
},
"author": {
"name": "Daniel Derevjanik",
"email": "daniel.derevjanik@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dderevjanik/agescx-js/issues"
},
"homepage": "https://github.com/dderevjanik/agescx-js#readme"
}