-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "@civ4pm/core",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"os": [
"win32"
],
"cpu": [
"x64"
],
"author": {
"name": "Vitaly Pereslavtsev",
"email": "dev@pereslavtsev.com",
"url": "https://www.pereslavtsev.com/"
},
"scripts": {
"build": "webpack && dts-bundle-generator --silent -o dist/index.d.ts src/index.ts",
"dev": "webpack --config webpack-hmr.config.js --watch",
"test": "jest --runInBand --colors --verbose --reporters=default",
"test:coverage": "yarn test --coverage",
"test:debug": "cross-env DEBUG=* yarn test"
},
"dependencies": {
"debug": "^4.3.1",
"dts-bundle-generator": "^5.9.0",
"execa": "^5.1.1",
"fast-glob": "^3.2.5",
"ini": "^2.0.0",
"node-stream-zip": "^1.13.6",
"regedit": "^4.0.0",
"wmic": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/debug": "^4.1.5",
"@types/ini": "^1.3.30",
"@types/jest": "^26.0.23",
"@types/merge-stream": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"run-script-webpack-plugin": "^0.0.11",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
}
}