-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 2.16 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
63
64
65
66
67
68
69
70
{
"name": "scrypt-ts-lib",
"version": "0.1.28",
"description": "A collection of smart contract libraries for `scrypt-ts`.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf dist && rimraf artifacts",
"compile": "npx scrypt-cli@latest compile --asm",
"compileTest": "cd tests && npx scrypt-cli@latest compile",
"compileAllTest": "cd tests && npx scrypt-cli@latest compile -e=\"1\"",
"pretest": "npm run build && npm run compile && npm run compileTest",
"test": "cd tests && mocha -i -f 'Heavy'",
"pretest-all": "npm run build && npm run compile && npm run compileAllTest",
"test-all": "cd tests && mocha",
"lint": "eslint . --ext .js,.ts --fix && prettier --write --ignore-unknown \"**/*\"",
"lint-check": "eslint . --ext .js,.ts && prettier --check --ignore-unknown \"**/*\"",
"prepare": "husky install",
"prepublishOnly": "npm run build && npm run compile"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"**/*.{ts,js}": [
"eslint --cache --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sCrypt-Inc/scrypt-ts-lib.git"
},
"keywords": [
"scrypt-ts"
],
"author": "sCrypt.Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/sCrypt-Inc/scrypt-ts-lib/issues"
},
"homepage": "https://github.com/sCrypt-Inc/scrypt-ts-lib#readme",
"dependencies": {
"rabinsig": "^4.2.1",
"scrypt-ts": "^1.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"bigint-rnd": "^1.0.2",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"circomlibjs": "^0.1.7",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}