forked from PBug90/w3gjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.41 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
85
86
87
88
89
90
91
92
93
94
{
"name": "w3gjs",
"version": "1.5.1",
"description": "A native JavaScript WarCraft 3 replay parser implementation.",
"main": "dist/W3GReplay.umd.js",
"module": "dist/W3GReplay.es5.js",
"typings": "dist/types/W3GReplay.d.ts",
"files": [
"dist",
"index.js"
],
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"coverage": "jest --collectCoverage",
"lint": "eslint --ext .ts,.js src/ test/",
"lint:fix": "eslint --ext .jsx,.js lib/ --fix",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"build:docs": "typedoc --out docs --target es6 --theme minimal --mode file src"
},
"dependencies": {
"binary-parser": "^1.4.0"
},
"devDependencies": {
"@types/binary-parser": "^1.3.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jsonschema": "^1.2.4",
"lodash.camelcase": "^4.3.0",
"rollup": "^1.20.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.23.0",
"ts-jest": "^24.0.2",
"typedoc": "^0.15.0",
"typescript": "^3.6.2"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": false
}
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PBug90/w3gjs.git"
},
"keywords": [
"w3g",
"warcraft",
"replay",
"parser"
],
"author": "PBug90",
"license": "MIT",
"bugs": {
"url": "https://github.com/PBug90/w3gjs/issues"
},
"homepage": "https://github.com/PBug90/w3gjs#readme"
}