-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.02 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
71
72
{
"name": "@meck93/evote-crypto",
"version": "0.1.10",
"description": "",
"repository": {
"type": "git",
"url": "ssh://[email protected]:meck93/evote-crypto.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"postinstall": "./addCurveToEllipticLibrary.sh",
"prebuild": "rm -rf lib",
"build": "tsc",
"pre-commit": "lint-staged",
"test": "nyc --reporter=text ts-mocha \"./test/**/*.spec.ts\"",
"test:timeout": "nyc --reporter=text ts-mocha \"./test/**/*.spec.ts\" --timeout 100000",
"test:watch": "ts-mocha \"./test/**/*.spec.ts\" -w --watch-extensions ts",
"test:report": "nyc --reporter=html ts-mocha \"./test/**/*.spec.ts\"",
"format": "prettier --write \"**/*.+(js|ts|json|md)\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"ts-mocha": "./node_modules/.bin/ts-mocha",
"ts-node": "./node_modules/.bin/ts-node",
"tsc": "./node_modules/.bin/tsc",
"preversion": "npm run build"
},
"license": "MIT",
"bundledDependencies": [
"elliptic"
],
"dependencies": {
"bn.js": "^5.1.2",
"elliptic": "6.5.4",
"hash.js": "^1.1.7",
"random": "^2.2.0",
"web3": "^1.2.8"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/elliptic": "^6.4.12",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"lint-staged": "^10.2.9",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
]
}
}