-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.2 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
{
"name": "sparkengineweb",
"version": "0.12.3",
"engines": {
"npm": "^10",
"node": "^20"
},
"maintainers": [
"https://github.com/RuggeroVisintin",
"https://github.com/Scrice994",
"https://github.com/nunziozappulla"
],
"description": "",
"types": "src/index.d.ts",
"main": "src/index.ts",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development --watch",
"build:docs": "sh ./scripts/build-docs.sh",
"build:lib": "sh ./scripts/build-lib.sh",
"serve:examples": "sh ./scripts/serve-examples.sh",
"clean": "npx tsc --build --clean",
"test": "jest --watch",
"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": "https://github.com/RuggeroVisintin",
"license": "GNU GPL v2",
"bugs": {
"url": "https://github.com/RuggeroVisintin/SparkEngineWeb/issues"
},
"homepage": "https://github.com/RuggeroVisintin/SparkEngineWeb#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.47.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.18.0",
"commitlint": "^19.5.0",
"eslint": "^8.57.1",
"eslint-plugin-jest-extended": "^2.4.0",
"eslint-plugin-tsdoc": "^0.3.0",
"express": "^4.21.0",
"fastbench": "^1.0.1",
"husky": "^9.1.4",
"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.14.0",
"semantic-release": "^24.1.2",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"uuid": "^10.0.0"
}
}