-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "divviup-ts",
"workspaces": [
"./packages/common",
"./packages/field",
"./packages/xof",
"./packages/vdaf",
"./packages/prio3",
"./packages/dap",
"./packages/interop-test-client"
],
"type": "module",
"scripts": {
"test": "mocha packages/*/src/**/*.spec.ts",
"build": "npm run -ws --if-present build",
"build:clean": "npm run -ws --if-present build:clean",
"test:coverage": "c8 npm test",
"lint": "npm run -ws --if-present lint",
"clean": "npm run -ws clean",
"ci": "npm run build && npm run lint && npm run test:coverage",
"upgrade-interactive": "npm exec -ws npm-upgrade",
"docs": "typedoc",
"check": "npm run -ws --if-present check",
"interop-test-client": "npm start -w @divviup/interop-test-client"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^5.0.1",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.1",
"c8": "^10.1.2",
"chai": "^5.1.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.26.11",
"typedoc-plugin-missing-exports": "^3.0.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.15.0"
}
}