-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "e-ipfs-core-lib",
"version": "0.5.1",
"description": "E-IPFS core library",
"license": "(Apache-2.0 AND MIT)",
"homepage": "https://github.com/elastic-ipfs/core-lib",
"scripts": {
"test": "c8 --reporter=text --reporter=html tap test/*.test.js",
"test:ci": "npm test && c8 check-coverage --lines 100 --functions 100 --branches 100",
"format": "standard src test --fix",
"lint": "standard src test | snazzy",
"prepare": "husky install"
},
"engines": {
"node": "18.12"
},
"dependencies": {
"@aws-sdk/util-dynamodb": "^3.218.0",
"bl": "^6.0.0",
"js-yaml": "^4.1.0",
"libp2p": "^0.40.0",
"pino": "^8.7.0",
"pino-pretty": "^9.1.1",
"piscina": "^3.2.0",
"prom-client": "^14.1.0",
"protobufjs": "^7.1.2",
"sodium-native": "^3.4.1",
"undici": "^5.13.0",
"varint": "^6.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"c8": "^7.12.0",
"dedent": "^0.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"snazzy": "^9.0.0",
"split2": "^4.1.0",
"standard": "^17.0.0",
"tap": "^16.3.2"
},
"lint-staged": {
"*.{js,jsx}": "standard --cache --fix"
},
"type": "module",
"exports": "./src/index.js",
"main": "./src/index.js"
}