forked from herumi/mcl-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "mcl-wasm",
"version": "1.5.0",
"description": "mcl ; A portable and fast pairing-based cryptography library for Node.js by WebAssembly",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:mcl_c.js && npm run build:dist && npm run build:browser",
"build:mcl_c.js": "make",
"build:dist": "tsc",
"build:browser": "webpack",
"lint": "standard --verbose test/test.js; ts-standard --verbose src/*.ts",
"lint-fix": "standard --fix test/test.js; ts-standard --fix src/*.ts",
"test-ts": "tsc && tsc test/test-ts.ts && node test/test-ts.js",
"test": "tsc && node test/test.js && node test/eth-test.js"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/herumi/mcl-wasm.git"
},
"keywords": [
"elliptic curve",
"WebAssembly",
"pairing"
],
"files": [
"dist/*",
"browser/mcl.js",
"browser/package.json"
],
"author": "herumi <[email protected]> (https://github.com/herumi/)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/herumi/mcl-wasm/issues"
},
"engines": {
"node": ">=14.17"
},
"homepage": "https://github.com/herumi/mcl-wasm#readme",
"devDependencies": {
"assert": "^2.0.0",
"perf_hooks": "^0.0.1",
"standard": "^16.0.4",
"ts-loader": "^9.2.6",
"ts-standard": "^10.0.0",
"typescript": "^4.9.5",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"standard": {
"ignore": [
"src/mcl_c.js"
]
},
"ts-standard": {
"project": "./tsconfig.json"
},
"dependencies": {
"@types/node": "^20.2.5"
}
}