-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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": "@meshx-org/sidetree-sdk",
"version": "0.7.2",
"description": "TypeScript SDK for Sidetree",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meshx-org/sidetree-sdk.git"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com",
"main": "./dist/src/index.js"
},
"dependencies": {
"@transmute/ed25519-key-pair": "0.7.0-unstable.66",
"@transmute/jose-ld": "0.7.0-unstable.80",
"@transmute/secp256k1-key-pair": "0.7.0-unstable.66",
"@waiting/base64": "4.2.9",
"canonicalize": "1.0.8",
"multihashes": "4.0.3",
"randombytes": "2.1.0",
"uri-js": "4.4.1"
},
"devDependencies": {
"@types/jasmine": "4.0.3",
"@types/node": "^18.11.5",
"@types/randombytes": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copyfiles": "2.4.1",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jasmine": "^4.3.0",
"jasmine-reporters": "^2.5.2",
"jasmine-spec-reporter": "7.0.0",
"nyc": "15.1.0",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"typescript": "3.9.6"
},
"scripts": {
"build": "tsc && copyfiles \"src/**/*.json\" dist && copyfiles \"tests/**/*.js*\" dist && copyfiles \"package.json\" dist",
"test": "npm run build && nyc jasmine --config=./jasmine.json",
"lint": "eslint --ext ts src/ tests/",
"format": "prettier --write .",
"lint:fix": "eslint --ext ts src/ tests/ --fix"
},
"nyc": {
"all": true,
"cache": false,
"extension": [
".ts"
],
"include": [
"dist/src/**",
"src/**"
],
"exclude": [
"**/index.d.ts",
"**/index.ts",
"lib/**/**ErrorCode.ts"
],
"reporter": [
"text",
"cobertura",
"html"
]
}
}