-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 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
60
{
"name": "@panther-core/crypto",
"description": "Cryptography library for Panther Protocol LaunchDAO",
"version": "0.1.0",
"main": "lib/index.js",
"types": "lib/**/*.d.ts",
"license": "SEE LICENSE IN ./LICENSE",
"browser": {
"fs": false,
"path": false,
"os": false
},
"scripts": {
"build:types": "./scripts/gen-types.sh",
"build:ts": "tsc -p tsconfig.json",
"build": "yarn build:types && yarn build:ts",
"watch": "yarn build:ts --watch",
"test": "yarn jest",
"test:watch": "jest --clearCache && jest --watch",
"tmt:build": "ts-node ./src/triad-merkle-tree/scripts/build.ts",
"lint": "yarn lint:ts && yarn run prettier:list-different",
"lint:eslint": "eslint --max-warnings 0",
"lint:ts": "yarn lint:eslint .",
"lint:fix": "eslint \"./**/*.{ts,tsx}\" --fix",
"prettier:check": "cd .. && yarn prettier --check crypto",
"prettier:fix": "cd .. && yarn prettier --write crypto",
"prettier:list-different": "cd .. && yarn prettier --list-different crypto"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"dependencies": {
"@types/browserify": "^12.0.37",
"assert": "^2.0.0",
"browserify": "^17.0.0",
"circomlibjs": "^0.0.8",
"crypto": "^1.0.1",
"ethers": "^5.5.1",
"ffjavascript": "^0.2.38",
"jest": "^27.3.1",
"lz-string": "^1.4.4",
"snarkjs": "^0.4.10",
"typescript": "^4.9.4",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.177",
"@types/lz-string": "^1.3.34",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7"
}
}