-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
88 lines (88 loc) · 2.44 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
83
84
85
86
87
88
{
"name": "@decentralized-identity/sidetree",
"version": "1.0.6",
"description": "Node.js implementation of Sidetree.",
"repository": "https://github.com/decentralized-identity/sidetree",
"license": "Apache-2.0",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"dependencies": {
"base64url": "3.0.1",
"bitcore-lib": "8.22.2",
"canonicalize": "1.0.1",
"chalk": "4.0.0",
"cids": "1.1.4",
"http-status": "1.3.2",
"jose": "1.28.2",
"mongodb": "3.7.3",
"multihashes": "0.4.14",
"node-fetch": "2.6.7",
"priorityqueue": "1.0.0",
"semver": "7.3.5",
"spec-up": "^0.10.6",
"time-span": "3.1.0",
"uri-js": "4.4.0",
"yieldable-json": "1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^10.0.0",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/async-retry": "1.4.0",
"@types/bitcore-lib": "0.15.1",
"@types/http-status": "0.2.30",
"@types/jasmine": "3.3.12",
"@types/mongodb": "3.6.9",
"@types/node": "11.13.4",
"@types/node-fetch": "2.6.1",
"@types/semver": "7.3.5",
"@types/time-span": "2.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"async-retry": "1.2.3",
"conventional-changelog": "3.1.18",
"conventional-changelog-cli": "2.0.35",
"copyfiles": "2.3.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "1.3.1",
"istanbul-badges-readme": "^1.8.1",
"jasmine": "^3.7.0",
"jasmine-reporters": "^2.5.0",
"jasmine-spec-reporter": "4.2.1",
"mongodb-memory-server": "^8.5.2",
"nyc": "^15.1.0",
"ts-node": "8.3.0",
"tslint": "5.11.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.9.6"
},
"scripts": {
"commit": "git-cz",
"spec": "node -e \"require('spec-up')({ nowatch: true })\"",
"spec:edit": "node -e \"require('spec-up')()\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"all": true,
"cache": false,
"extension": [
".ts"
],
"reporter": [
"text",
"cobertura",
"html",
"json-summary"
]
}
}