-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "dag-jose",
"version": "5.1.1",
"description": "Typescript implementation of the IPLD dag-jose format",
"main": "./lib/index.js",
"type": "module",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js"
}
},
"files": [
"lib"
],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"build": "./node_modules/.bin/tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.ts",
"clean": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-dag-jose.git"
},
"keywords": [
"ipld",
"ipfs",
"jose",
"dag"
],
"author": "Joel Thorstensson <[email protected]>",
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/ceramicnetwork/js-dag-jose/issues"
},
"homepage": "https://github.com/ceramicnetwork/js-dag-jose#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@stablelib/x25519": "^1.0.1",
"@types/jest": "^29.1.2",
"@types/lodash.transform": "^4.6.6",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^29.2.0",
"did-jwt": "^6.0.0",
"eslint": "^8.12.0",
"eslint-config-3box": "^0.4.1",
"eslint-plugin-jest": "^27.1.2",
"fast-json-stable-stringify": "^2.1.0",
"jest": "^29.2.0",
"prettier": "^2.3.0",
"typescript": "^4.3.2",
"uint8arrays": "^5.0.3"
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.0",
"multiformats": "~13.1.3"
}
}