-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "@stricahq/cbors",
"version": "1.0.3",
"description": "cbor encoder and decoder with annotation",
"main": "dist/index.js",
"keywords": [
"cbor",
"strica",
"cardano"
],
"repository": {
"type": "git",
"url": "https://github.com/StricaHQ/cbors.git"
},
"bugs": {
"url": "https://github.com/StricaHQ/cbors/issues"
},
"homepage": "https://github.com/StricaHQ/cbors#readme",
"scripts": {
"docs": "rm -rf docs && typedoc",
"build": "rm -rf dist && tsc && webpack",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "ts-mocha tests/**/*.spec.ts"
},
"author": "Strica",
"license": "Apache-2.0",
"dependencies": {
"bignumber.js": "^9.0.2",
"buffer": "^6.0.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"ts-mocha": "^9.0.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"package.json"
]
}