-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.7 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "heimdal-id",
"version": "1.4.0",
"description": "Heimdal ID",
"repository": {
"type": "git",
"url": "https://github.com/icellan/heimdal-id.git"
},
"keywords": [
"bitcoin",
"bitcoinsv",
"bsv",
"heimdal",
"identity"
],
"license": "Open BSV",
"precommit": "test",
"main": "dist/typescript-npm-package.cjs.js",
"module": "dist/typescript-npm-package.esm.js",
"browser": "dist/typescript-npm-package.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"clean": "rimraf ./build ./dist ./docs",
"deploy": "yarn pub --access public",
"dev": "rollup -c -w",
"docs": "rimraf ./docs && jsdoc src -r -c jsdoc.json -d docs",
"prebuild:types": "rimraf ./build",
"predocs": "rimraf ./docs",
"pub": "yarn build && yarn publish",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testquiet": "jest --detectOpenHandles --forceExit --silent",
"testonly": "jest --collectCoverage --detectOpenHandles --forceExit",
"testwatch": "jest --watchAll --collectCoverage --logHeapUsage --detectOpenHandles",
"test": "yarn lint && yarn testonly",
"test-watch": "yarn testwatch",
"check": "./node_modules/.bin/npm-check -u",
"prepare": "yarn clean && yarn lint && yarn test && yarn build"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.0.0",
"@rollup/plugin-typescript": "^8.3.1",
"@types/bsv": "github:chainbow/bsv-types",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.0.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-slow-test-reporter": "^1.0.0",
"npm-check": "5.7.0",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.12.1",
"rimraf": "2.6.2",
"rollup": "^2.70.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.22",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-polyfill-node": "^0.10.0",
"run-sequence": "2.2.1",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.23.1",
"typescript": "^4.6.2"
},
"dependencies": {
"base64url": "^3.0.1",
"bsv": "^1.5.6",
"caniuse-lite": "^1.0.30001412",
"moment": "^2.29.1"
}
}