-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "cyrano",
"version": "1.0.0",
"description": "Freeing the information contained in networked fencing scoring machines by providing an ecosystem of services that allows everyone to set up events with more automation.",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -rf ./node_modules && npm i",
"start": "node index.js",
"demo": "node demo/run.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collect-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seigel/cyrano.git"
},
"keywords": [
"cyrano",
"fencing"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seigel/cyrano/issues"
},
"homepage": "https://github.com/seigel/cyrano#readme",
"jest": {
"testPathIgnorePatterns": ["/node_modules/", "/.claude/"],
"transform": {}
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"jest": "^30.2.0"
}
}