forked from TacSimTeam/TacSimulator-TS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 KB
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
{
"name": "tacsimulator",
"version": "1.0.0",
"description": "TaC simulator written by TypeScript",
"main": "dist/main.js",
"scripts": {
"compile": "webpack",
"dev": "cross-env NODE_ENV=\"development\" webpack",
"lint": "eslint ./src/**/*.ts",
"fmt": "prettier --write ./src/**/* && prettier --write ./public/**/*.{html,css}",
"clean": "rimraf dist && rimraf TacSimulator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TacSimTeam/TacSimulator-TS.git"
},
"keywords": [],
"author": "i18furuta",
"license": "ISC",
"bugs": {
"url": "https://github.com/TacSimTeam/TacSimulator-TS/issues"
},
"homepage": "https://github.com/TacSimTeam/TacSimulator-TS#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/webaudioapi": "^0.0.27",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-jest": "^26.1.4",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.9",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"build": {
"productName": "TacSimulator",
"directories": {
"output": "TacSimulator"
},
"files": [
"dist/",
"public/"
],
"mac": {
"target": [
"dmg"
]
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}