This repository has been archived by the owner on Feb 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "nacl-did",
"version": "1.0.1",
"description": "Resolve and manage DIDs using NaCL crypto suites",
"main": "lib/nacldid.umd.js",
"module": "lib/nacldid.modern.js",
"types": "lib/nacldid.d.ts",
"source": "src/nacldid.ts",
"author": "Pelle Braendgaard <[email protected]>",
"files": [
"lib",
"dist",
"src",
"docs",
"README.md"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/uport-project/nacl-did.git"
},
"dependencies": {
"did-resolver": "^1.0.0",
"ed2curve-esm": "^0.3.0-alpha-1",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0"
},
"scripts": {
"build:js": "./node_modules/.bin/microbundle -f modern,umd",
"build": "npm run build:js && npm run test && npm run build:docs",
"test": "./node_modules/.bin/jest --coverage",
"test:watch": "./node_modules/.bin/jest --watch",
"test:ci": "./node_modules/.bin/jest -u --coverage && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage -v",
"dev": "./node_modules/.bin/microbundle --watch",
"format": "./node_modules/.bin/prettier --write src/**/*",
"build:docs": "./node_modules/.bin/typedoc --theme markdown --out docs/ src/nacldid.ts ./index.d.ts",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^24.9.0",
"@types/mockdate": "^2.0.0",
"@types/node": "^13.1.7",
"codacy-coverage": "^3.4.0",
"ethr-did-resolver": "^0.2.0",
"jest": "^24.9.0",
"kitimat": "^0.1.8",
"kitimat-jest": "^0.1.8",
"microbundle": "^0.12.0-next.6",
"mockdate": "^2.0.2",
"prettier": "^1.19.1",
"regenerator-runtime": "^0.13.3",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.7",
"typescript": "^3.7.5"
},
"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/**"
]
}
}