forked from IntersectMBO/cardano-addresses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"version": "3.12.0",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npm run copy_jsapi ; tsdx watch --noClean --target node --onFirstSuccess \"node demo/index.js\"",
"postbuild": "npm run copy_jsapi",
"build": "tsdx build",
"pretest": "npm run copy_jsapi ; npm run make_version",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "rm -f test/version.ts ; tsdx build && npm run copy_jsapi",
"typedoc": "typedoc",
"copy_jsapi": "test -n \"$CARDANO_ADDRESSES_JS\" && cp --no-preserve=all -v $CARDANO_ADDRESSES_JS/*.js dist || true",
"make_version": "node -p \"require('fs').writeFileSync('test/version.ts', 'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';')\""
},
"bin": {
"js-inspect-address": "bin/js-inspect-address"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"name": "cardano-addresses",
"author": "IOHK <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/IntersectMBO/cardano-addresses.git",
"directory": "jsapi"
},
"module": "dist/cardano-addresses.esm.js",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.21.1",
"jest": "^27.1.0",
"node-notifier": ">=8.0.1",
"ts-jest": "^27.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.11",
"typescript": "~4.2.4"
},
"dependencies": {}
}