-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"name": "open-evolution-simulator",
"version": "1.0.0",
"description": "Open Evolution Simulator",
"source": "src/index.html",
"scripts": {
"start": "npx parcel --open",
"build": "npx parcel build ",
"test": "jest",
"lint": "npx eslint src/**/*.ts",
"fix": "npx eslint src/**/*.ts --fix",
"prepare": "husky install",
"check": "npx lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MemoS77/open-evolution-simulator.git"
},
"author": "Memo",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/MemoS77/open-evolution-simulator/issues"
},
"homepage": "https://github.com/MemoS77/open-evolution-simulator#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@parcel/transformer-sass": "^2.8.2",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"parcel": "^2.8.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"lint-staged": {
"src/**/*.ts": "eslint --fix"
}
}