forked from ChainAgnostic/caip-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"name": "caip",
"description": "CAIP standard utils",
"version": "1.1.0",
"author": "Pedro Gomes <github.com/pedrouid>",
"license": "MIT",
"keywords": [
"caip",
"blockchain",
"standard",
"chain-agnostic",
"parse",
"format",
"chainId",
"accountId",
"assetId"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"homepage": "https://github.com/pedrouid/caip-js",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrouid/caip-js.git"
},
"bugs": {
"url": "https://github.com/pedrouid/caip-js/issues"
},
"scripts": {
"start": "tsdx watch",
"clean": "rm -rf dist",
"build:microbundle": "./node_modules/.bin/microbundle --compress=false",
"build": "yarn clean && yarn build:microbundle",
"test": "tsdx test ./test",
"lint": "tsdx lint src test",
"prepare": "yarn lint && yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "25.1.1",
"@types/node": "13.7.0",
"husky": "4.2.1",
"microbundle": "^0.14.2",
"tsdx": "0.12.3",
"tslib": "1.10.0",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
}
}