-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
89 lines (89 loc) · 2.45 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
89
{
"name": "ion",
"version": "1.0.4",
"description": "Identity Overlay Network (ION) using Sidetree protocol.",
"repository": "https://github.com/decentralized-identity/ion",
"license": "Apache-2.0",
"main": "dist/src/core.js",
"dependencies": {
"@decentralized-identity/ion-sdk": "^0.5.0",
"@decentralized-identity/sidetree": "1.0.6-unstable.5e20ddf",
"chalk": "4.0.0",
"koa": "2.7.0",
"koa-router": "7.4.0",
"raw-body": "2.3.3",
"yargs": "15.3.1"
},
"devDependencies": {
"@root/encoding": "1.0.1",
"@types/bitcore-lib": "0.15.1",
"@types/cls-hooked": "4.2.1",
"@types/jasmine": "2.8.12",
"@types/koa": "^2.13.4",
"@types/koa-router": "7.0.40",
"@types/node": "17.0.41",
"@types/supertest": "^2.0.12",
"@types/yargs": "15.0.4",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"axios": "^0.27.2",
"copyfiles": "^2.2.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",
"fs-extra": "9.1.0",
"gulp": "4.0.2",
"gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1",
"gulp-connect": "5.7.0",
"gulp-nunjucks-render": "2.2.3",
"gulp-terser": "1.2.0",
"highcharts": "^9.0.0",
"husky": "1.3.1",
"jasmine": "3.5.0",
"jasmine-reporters": "^2.5.0",
"jasmine-spec-reporter": "4.2.1",
"markdown-it": "^13.0.1",
"merge-stream": "2.0.0",
"nyc": "^15.1.0",
"prismjs": "^1.25.0",
"supertest": "^6.2.3",
"ts-node": "8.3.0",
"typescript": "3.9.6"
},
"overrides": {
"gulp": {
"glob-parent": "5.1.2"
}
},
"bin": {
"ion": "./dist/bin/index.js"
},
"scripts": {
"build": "tsc && copyfiles \"config/**/*.json\" dist && copyfiles \"tests/**/*.json\" dist && copyfiles \"tests/**/*.js*\" dist",
"test": "jasmine --config=./tests/jasmine.json",
"cc": "npm run build && nyc jasmine --config=./tests/jasmine.json",
"lint": "eslint --ext ts src/ tests/ --fix",
"start": "node dist/src/core.js",
"core": "node dist/src/core.js",
"bitcoin": "node dist/src/bitcoin.js"
},
"nyc": {
"all": true,
"extension": [
".js"
],
"include": [
"dist/src/**"
],
"reporter": [
"text",
"cobertura",
"html"
]
}
}