forked from Chia-Mine/clvm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "clvm",
"version": "2.0.1",
"author": "ChiaMineJP <admin@chiamine.jp>",
"description": "Javascript implementation of chia lisp",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Chia-Mine/clvm-js.git"
},
"bugs": "https://github.com/Chia-Mine/clvm-js/issues",
"main": "./.dist/npm/index.js",
"typings": "./.dist/npm/index.d.ts",
"scripts": {
"build": "node pre_build.js && tsc --sourcemap false && webpack",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"chia",
"clvm",
"chialisp",
"typescript"
],
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"bls-signatures": "^1.0.14",
"jscrypto": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.4.1",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"jest": "^27.0.6",
"terser-webpack-plugin": "^5.1.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.2.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"browserslist": [
"edge >= 79",
"firefox >= 68",
"chrome >= 67",
"safari > 14",
"opera >= 54",
"ios_saf >= 14.4",
"android >= 67",
"op_mob >= 48",
"and_chr >= 67",
"and_ff >= 68",
"samsung >= 9.2",
"node >= 10.4.0",
"electron >= 4.0.0"
]
}