forked from decentralized-identity/did-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.02 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "did-jwt",
"version": "4.4.0",
"description": "Library for Signing and Verifying JWTs compatible uPort and DID standards",
"main": "lib/index.js",
"source": "src/index.ts",
"modules": "lib/index.mjs",
"types": "lib/index.d.ts",
"umd:main": "lib/index.umd.js",
"files": [
"lib",
"dist",
"src",
"tutorial",
"esm"
],
"scripts": {
"test": "jest",
"test:ci": "jest --coverage && codecov",
"build:js": "microbundle",
"build:browser": "webpack --config webpack.config.js",
"build": "npm run build:js && npm test && npm run build:browser",
"build:docs": "echo 'PLEASE UPDATE REFERENCE DOCS MANUALLY'",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "standard && tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"release": "semantic-release --debug"
},
"author": "Pelle Braendgaard <[email protected]>",
"contributors": [
"Mircea Nistor <[email protected]>"
],
"license": "Apache-2.0",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!**/node_modules/**",
"!src/**/index.ts"
],
"testEnvironment": "node",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/nock"
]
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/elliptic": "6.4.12",
"@types/jest": "26.0.10",
"codecov": "3.7.2",
"eslint": "7.7.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "26.4.0",
"jsdoc-to-markdown": "6.0.1",
"jsontokens": "3.0.0",
"microbundle": "0.12.3",
"mockdate": "3.0.2",
"nacl-did": "1.0.1",
"prettier": "2.0.5",
"regenerator-runtime": "0.13.7",
"semantic-release": "17.1.1",
"sinon": "9.0.3",
"standard": "14.3.4",
"ts-jest": "26.2.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"typescript": "3.9.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"@stablelib/utf8": "^1.0.0",
"buffer": "^5.6.0",
"did-resolver": "^2.0.1",
"elliptic": "^6.5.2",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"tweetnacl": "^1.0.3",
"uport-base64url": "3.0.2-alpha.0"
},
"standard": {
"ignore": [
"lib/**"
],
"globals": [
"it",
"describe",
"expect",
"jest",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach"
]
}
}