forked from ChainSafe/blst-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.9 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": "@chainsafe/blst",
"version": "0.2.9",
"description": "Typescript wrapper for supranational/blst native bindings, a highly performant BLS12-381 signature library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"prebuild",
"blst"
],
"scripts": {
"install": "node dist/scripts/install.js",
"lint": "eslint --color --ext .ts src/ test/",
"build": "tsc --project tsconfig.build.json",
"bootstrap": "yarn install --ignore-scripts && yarn build && yarn install",
"clean": "rm -rf prebuild/*.node dist blst/libblst.a blst/bindings/libblst.a blst/bindings/node.js/blst.node blst/bindings/node.js/blst_wrap.cpp",
"test": "yarn test:unit && yarn test:spec",
"test:unit": "mocha test/unit/**/*.test.ts",
"test:spec": "mocha 'test/spec/**/*.test.ts'",
"download-spec-tests": "node -r ts-node/register test/spec/downloadTests.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChainSafe/blst-ts.git"
},
"keywords": [],
"author": "ChainSafe Systems",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChainSafe/blst-ts/issues"
},
"homepage": "https://github.com/ChainSafe/blst-ts#readme",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.5",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"chai": "^4.2.0",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"js-yaml": "^4.1.0",
"mocha": "^8.1.3",
"prettier": "^2.2.1",
"threads": "^1.6.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/tar": "^6.1.4",
"node-fetch": "^2.6.1",
"node-gyp": "^8.4.0"
}
}