-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bitsnark",
"version": "0.1.0",
"description": "",
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": ""
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.4.1",
"@types/sinon": "^17.0.3",
"@types/snarkjs": "^0.7.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"chai": "^4.3.7",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"sinon": "^17.0.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"crypto-js": "^4.2.0",
"snarkjs": "^0.7.4"
}
}