forked from RuggeroVisintin/SparkEngineWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "sparkengineweb",
"version": "0.7.2",
"engines": {
"npm": "^10",
"node": "^20"
},
"maintainers": [
"https://github.com/RuggeroVisintin",
"https://github.com/Scrice994"
],
"description": "",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development --watch",
"build:docs": "sh ./scripts/build-docs.sh",
"serve:examples": "sh ./scripts/serve-examples.sh",
"clean": "npx tsc --build --declaration --clean",
"test": "jest",
"test:ci": "jest --config jest.ci.config.js",
"test:perf": "npx ts-node test/performance/bench.perf.ts",
"test:perf:ci": "npm run test:perf -- --no-color",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RuggeroVisintin/SparkEngineWeb.git"
},
"author": "",
"license": "GNU GPL v2",
"bugs": {
"url": "https://github.com/RuggeroVisintin/SparkEngineWeb/issues"
},
"homepage": "https://github.com/RuggeroVisintin/SparkEngineWeb#readme",
"devDependencies": {
"@commitlint/config-conventional": "^18.6.2",
"@playwright/test": "^1.41.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"commitlint": "^18.6.1",
"eslint": "^8.56.0",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"express": "^4.18.2",
"fastbench": "^1.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"make-coverage-badge": "^1.2.0",
"release-please": "^16.9.0",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"uuid": "^9.0.1"
}
}