forked from PBug90/w3gjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.94 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
{
"name": "w3gjs",
"version": "2.1.0",
"description": "A native JavaScript WarCraft 3 replay parser implementation.",
"main": "dist/lib/index.js",
"module": "dist/W3GReplay.es5.js",
"types": "dist/types/index.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 src/** --fix",
"build": "tsc"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jsonschema": "^1.2.6",
"prettier": "^2.1.0",
"ts-jest": "^26.2.0",
"typescript": "^4.0.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"
}