-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "scrypt-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "npx scrypt-cli compile --watch",
"precompile": "rimraf scrypt.index.json && rimraf artifacts",
"compile": "npx scrypt-cli compile --asm",
"pretest": "npm run compile",
"test": "npm run test:mocha",
"test:mocha": "cross-env NETWORK=local mocha -i -f 'Heavy'",
"test:all": "npm run pretest && cross-env NETWORK=local mocha --no-timeouts",
"test:testnet": "npm run pretest && cross-env NETWORK=testnet mocha -i -f 'Heavy' --no-timeouts",
"lint": "eslint . --ext .js,.ts --fix && prettier --write --ignore-unknown \"**/*\"",
"lint-check": "eslint . --ext .js,.ts && prettier --check --ignore-unknown \"**/*\"",
"prepare": "husky install",
"genprivkey": "npx ts-node tests/utils/privateKey.ts"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"**/*.{ts,js}": [
"eslint --cache --fix"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"paillier-bigint": "^3.4.3",
"scrypt-ord": "^1.0.16",
"scrypt-ts": "^1.3.31",
"scrypt-ts-lib": "^0.1.27"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"axios": "^1.3.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"scrypt-cli": "^0.1.73",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}