-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.74 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
{
"name": "@bitcoinerlab/miniscript",
"description": "Bitcoin Miniscript, a high-level language for describing Bitcoin spending conditions. It includes a compiler/analyzer with a signer‑agnostic satisfier that derives symbolic witnesses (e.g., <sig(key)>).",
"homepage": "https://bitcoinerlab.com/modules/miniscript",
"version": "2.0.0",
"author": "Jose-Luis Landabaso <landabaso@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinerlab/miniscript.git"
},
"keywords": [
"miniscript",
"satisfier",
"bitcoin",
"policy",
"asm",
"descriptors"
],
"bugs": {
"url": "https://github.com/bitcoinerlab/miniscript/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@bitcoinerlab/configs/prettierConfig.json",
"eslintConfig": {
"extends": "./node_modules/@bitcoinerlab/configs/eslintConfig"
},
"jest": {
"preset": "@bitcoinerlab/configs"
},
"scripts": {
"webdocs": "typedoc --options ./node_modules/@bitcoinerlab/configs/webtypedoc.json",
"docs": "typedoc --options ./node_modules/@bitcoinerlab/configs/typedoc.json",
"build:src": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.src.json",
"build:test": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json",
"build": "npm run build:src && npm run build:test",
"lint": "./node_modules/@bitcoinerlab/configs/scripts/lint.sh",
"test:unit": "jest --verbose",
"test": "npm run lint && npm run build && npm run test:unit",
"prepublishOnly": "rm -rf dist/ && npm test"
},
"files": [
"dist"
],
"dependencies": {
"bip68": "^1.0.4"
},
"devDependencies": {
"@bitcoinerlab/configs": "^2.0.0"
}
}