-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.66 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": "war3map",
"version": "0.1.1",
"description": "To translate between `war3map` and `json` formats for WarCraft III .w3x maps.",
"main": "dist/src/index.js",
"homepage": "https://invokerrrr.github.io/war3map/",
"repository": {
"type": "git",
"url": "https://github.com/invokerrrr/war3map.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"doc": "typedoc --disableOutputCheck",
"prepublish": "npm run build",
"coveralls":"jest --coverage && coveralls < coverage/lcov.info "
},
"files": [
"src/**/*",
"dist/src/**/*"
],
"keywords": [
"wc3",
"warcraft",
"frozen throne",
"reign of chaos",
"war3map",
"w3x"
],
"author": {
"name": "Invoker Bot",
"email": "594404963@qq.com",
"url": "https://github.com/invokerrrr"
},
"publisher": "invoker-godder",
"bugs": {
"url": "https://github.com/invokerrrr/war3map/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"coveralls": "^3.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^24.1.0",
"fs": "0.0.1-security",
"jest": "^26.5.2",
"path": "^0.12.7",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"tsutils": "^3.17.1",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"dependencies": {}
}