-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "@disy/cadenza.js",
"version": "10.2.9-dev",
"license": "Apache-2.0",
"repository": "github:DisyInformationssysteme/cadenza.js",
"type": "module",
"main": "./cadenza.js",
"types": "./cadenza.d.ts",
"files": [
"apidoc/**/*",
"cadenza.js",
"cadenza.d.ts",
"CHANGELOG.md",
"sandbox.cjs",
"sandbox.html"
],
"scripts": {
"build": "run-p validate:* build:*",
"build:docs": "typedoc",
"build:ts": "tsc",
"validate:format": "prettier ./src --check",
"validate:changelog": "changelog --latest-release",
"start": "run-p start:*",
"start:docs": "npm run build:docs -- --watch",
"start:test": "npm test -- --watch",
"start:ts": "npm run build:ts -- --watch",
"start:reformat": "onchange \"src/**/*\" -- prettier {{changed}} --write",
"test": "cross-env NODE_OPTIONS=--unhandled-rejections=warn jest",
"deploy:docs": "gh-pages --dist apidoc",
"sandbox": "node ./sandbox.cjs"
},
"devDependencies": {
"@types/jest": "29.5.12",
"cross-env": "7.0.3",
"gh-pages": "6.1.1",
"http-server": "14.1.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"keep-a-changelog": "2.5.3",
"npm-run-all": "4.1.5",
"onchange": "7.1.0",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"typedoc": "0.25.13"
},
"volta": {
"node": "16.13.1"
}
}