-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
89 lines (89 loc) · 3.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"author": "Christoph Guttandin",
"bin": {
"timing-provider-server": "./build/node/app.js"
},
"bugs": {
"url": "https://github.com/chrisguttandin/timing-provider-server/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"contributors": [
{
"email": "marcus.schreiter@meso.design",
"name": "Marcus Schreiter"
}
],
"dependencies": {
"fast-unique-numbers": "^9.0.15",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"description": "A command line tool to spin up a server which can be used with the timing-provider.",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-angular": "^19.7.0",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"chai": "^4.3.10",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-holy-grail": "^60.0.18",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"mocha": "^10.8.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"tsconfig-holy-grail": "^15.0.2"
},
"engines": {
"node": ">=18.2.0"
},
"files": [
"build/es2020/",
"build/node/",
"src/"
],
"homepage": "https://github.com/chrisguttandin/timing-provider-server",
"keywords": [
"Timing Object",
"Timing Provider",
"synchronisation",
"timing",
"timingsrc",
"webtiming"
],
"license": "MIT",
"name": "timing-provider-server",
"repository": {
"type": "git",
"url": "https://github.com/chrisguttandin/timing-provider-server.git"
},
"scripts": {
"build": "rimraf build/* && tsc --project src/tsconfig.json && babel ./build/es2020 --config-file ./config/babel/build.json --out-dir ./build/node",
"lint": "npm run lint:config && npm run lint:src && npm run lint:test",
"lint:config": "eslint --config config/eslint/config.json --ext .js --report-unused-disable-directives config/",
"lint:src": "eslint --config config/eslint/src.json --ext .ts --report-unused-disable-directives src/",
"lint:test": "eslint --config config/eslint/test.json --ext .js --report-unused-disable-directives test/",
"prepare": "husky",
"prepublishOnly": "npm run build",
"start": "node build/node/app.js",
"test": "npm run build && npm run test:integration && npm run test:unit",
"test:integration": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ]; then mocha --bail --parallel --recursive --require config/mocha/config-integration.js test/integration; fi",
"test:unit": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"unit\" ]; then mocha --bail --parallel --recursive --require config/mocha/config-unit.js test/unit; fi"
},
"type": "module",
"version": "7.1.1"
}