forked from decentralized-identity/did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.2 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rchain-did-resolver",
"version": "2.1.2",
"description": "Resolve DID documents from rchain testnet",
"main": "lib/rchain-did-resolver.js",
"types": "lib/rchain-did-resolver.d.ts",
"source": "src/rchain-did-resolver.ts",
"module": "lib/rchain-did-resolver.esm.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git@github.com:TheoXD/rchain-did-resolver.git"
},
"files": [
"dist",
"lib",
"src"
],
"author": "Theo Hallenius <theo.hallenius@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"build": "npm run format && npm test && npm run build:js",
"build:js": "microbundle",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"release": "semantic-release --debug",
"test": "jest",
"test:ci": "jest --coverage && codecov"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/elliptic": "^6.4.12",
"@types/jest": "26.0.20",
"@types/node": "12.12.47",
"@types/pako": "^1.0.1",
"codecov": "3.8.1",
"jest": "26.6.3",
"microbundle": "0.13.0",
"prettier": "2.2.1",
"regenerator-runtime": "0.13.7",
"semantic-release": "17.3.7",
"ts-jest": "26.5.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "4.1.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**"
]
},
"resolutions": {
"@babel/core": "7.12.13"
},
"dependencies": {
"elliptic": "^6.5.4",
"pako": "^2.0.3",
"rchain-token-files": "fabcotech/rchain-token#aaf8df2b9715608f307647989f5f8f3e24565bae",
"rchain-toolkit": "^0.2.8",
"uint8arrays": "^1.1.0"
}
}