-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1022 Bytes
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
{
"name": "fragmentation",
"version": "0.0.1",
"private": true,
"engines": {
"node": "24.x",
"npm": "^11.14"
},
"scripts": {
"app": "coffee -p app.coffee | node --input-type=module",
"start": "npm run version && npm run build && npm run app",
"version": "echo export default \\\"$SOURCE_VERSION\\\" > ./lib/version.js",
"build": "coffee -cbo lib src && coffee -cb tetromino-server.coffee && coffee -cbo test-build spec",
"watch": "coffee -cb tetromino-server.coffee && coffee -wcbo lib src",
"test": "npm run build && mocha test-build/*.spec.js"
},
"type": "module",
"dependencies": {
"coffeescript": "2.6.x",
"errorhandler": "1.5.x",
"express": "^4.22.2",
"jquery": "^3.5.0",
"seedrandom": "^3.0.5",
"socket.io": "^4.8.3"
},
"devDependencies": {
"chai": "^6.2.2",
"mocha": "^11.7.6",
"sinon": "21.1.2",
"sinon-chai": "4.0.1"
}
}