forked from ceramicnetwork/nft-did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2 KB
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
70
71
72
73
74
75
76
{
"name": "nft-did-resolver",
"version": "0.1.0",
"description": "DID Resolver for the NFT method",
"keywords": [
"Ceramic",
"DID",
"identity",
"Data"
],
"author": "Joel Torstensson <oed3933@gmail.com>",
"contributors": [
"Mike Roth <mike@manyuses.com>"
],
"homepage": "",
"repository": {
"type": "git",
"url": "git://github.com/ceramicnetwork/nft-did-resolver.git"
},
"license": "(Apache-2.0 OR MIT)",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"scripts": {
"test": "./node_modules/.bin/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,.jsx,.ts,.tsx",
"clean": "rm -rf ./lib",
"chain": "./node_modules/.bin/ganache-cli --port 8546"
},
"dependencies": {
"@ceramicnetwork/common": "^1.0.6",
"cross-fetch": "^3.0.6",
"json-to-graphql-query": "^2.0.0",
"uint8arrays": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.9.0",
"@ceramicnetwork/blockchain-utils-linking": "^1.0.2",
"@ceramicnetwork/core": "^1.1.0",
"@polkadot/util": "^5.9.2",
"@types/jest": "^26.0.22",
"@types/node": "^13.13.15",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-jest": "^26.6.3",
"did-resolver": "^3.0.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"ethers": "^5.0.32",
"ganache-cli": "^6.12.2",
"ganache-core": "2.13.1",
"jest": "^26.6.3",
"jest-environment-ceramic": "^0.11.1",
"jest-fetch-mock": "^3.0.3",
"typescript": "^4.2.3"
},
"jest": {
"automock": false,
"setupFiles": [
"./jest.setup.ts"
],
"transformIgnorePatterns": [
"/node_modules(?!/did-jwt)/"
]
},
"gitHead": "34eeee25597b0a60def72906c26d3afd6230aaf1"
}