-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "maci-core",
"version": "2.5.0",
"description": "",
"main": "build/ts/index.js",
"types": "build/ts/index.d.ts",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.build.json",
"benchmarks": "ts-node ts/__benchmarks__/index.ts",
"types": "tsc -p tsconfig.json --noEmit",
"test:maciState": "ts-mocha --exit ts/__tests__/MaciState.test.ts",
"test:e2e": "ts-mocha --exit ts/__tests__/e2e.test.ts",
"test:utils": "ts-mocha --exit ts/__tests__/utils.test.ts",
"test:poll": "ts-mocha --exit ts/__tests__/Poll.test.ts",
"test": "nyc ts-mocha --exit ts/__tests__/*.test.ts",
"docs": "typedoc --plugin typedoc-plugin-markdown --options ./typedoc.json"
},
"dependencies": {
"maci-crypto": "^2.5.0",
"maci-domainobjs": "^2.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.8",
"@types/node": "^22.9.0",
"benny": "^3.7.1",
"chai": "^4.3.10",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"extensions": [
".ts"
],
"all": true,
"exclude": [
"ts/__benchmarks__/**",
"**/__tests__/**",
"**/__tests__/*.ts",
"**/*.js",
"**/*.d.ts"
],
"branches": ">90%",
"lines": ">90%",
"functions": ">90%",
"statements": ">90%",
"check-coverage": true
}
}