This repository was archived by the owner on Mar 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.45 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bitcoin-computer-lib",
"version": "0.8.0-beta",
"description": "Smart Contracts for Bitcoin",
"license": "CC-BY-ND-4.0",
"repository": "bitcoin-computer/bitcoin-computer-lib",
"main": "bitcoin-computer-lib.cjs.js",
"author": {
"name": "Clemens Ley",
"email": "clemens@bitcoincomputer.io",
"url": "https://github.com/bitcoin-computer"
},
"engines": {
"node": ">=6"
},
"files": [
"dist"
],
"dependencies": {
"axios": "^0.27.2",
"bitcoin-computer-bitcore": "^0.1.23",
"crypto-js": "^4.0.0",
"dotenv": "^16.0.0",
"eccrypto": "^1.1.3",
"eciesjs": "^0.3.9",
"ses": "^0.15.9",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.0.0",
"@types/crypto-js": "^4.0.1",
"@types/eccrypto": "^1.1.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.0.3",
"bitcoind-rpc": "^0.9.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"hash.js": "^1.1.7",
"husky": "^7.0.4",
"jest": "^28.0.3",
"jest-localstorage-mock": "^2.4.19",
"npm-watch": "^0.11.0",
"prettier": "^2.1.2",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.1",
"typescript": "^4.0.3"
},
"scripts": {
"test": "yarn test-ltc-regtest",
"test-ltc-regtest": "CHAIN=LTC NETWORK=regtest BCN_URL=http://127.0.0.1:3000 jest --setupFiles dotenv/config --config ./jest.config.json",
"test-async": "yarn test-async-ltc-regtest",
"test-async-ltc-regtest": "CHAIN=LTC NETWORK=regtest BCN_URL=http://127.0.0.1:3000 jest --setupFiles dotenv/config --runInBand --config ./jest.async.config.json",
"coverage": "npm test -- --coverage",
"cp-files": "./scripts/cp-files.sh",
"lib-clean": "./scripts/lib-clean.sh",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint src test",
"lint-fix": "eslint src test --fix",
"docs": "documentation readme src --section=API",
"clean": "rm -fr dist/*",
"rollup": "node --max-old-space-size=3072 node_modules/rollup/dist/bin/rollup -c",
"deploy": "yarn run lib-clean && yarn run clean && yarn run rollup && yarn run cp-files",
"prebuild": "npm run clean",
"build": "npm run rollup",
"decls": "tsc -p tsconfig.decls.json",
"types": "tsc -p tsconfig.types.json",
"watch": "npm-watch",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish-only": "npm run lint && npm test && npm run build",
"postpublish": "git push origin master --follow-tags",
"reinstall": "rm -rf node_modules package-lock.json && npm install",
"count": "./scripts/count-errors.sh",
"prepare": "husky install",
"validate-branch": ". scripts/validate-branch.sh && validate_branch"
},
"watch": {
"test": "{src,test}/*.js",
"lint": "{src,test}/*.js",
"build": "src"
},
"keywords": [
"generator-nod"
]
}