-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "minicertificates",
"main": "./build/src/main.js",
"version": "0.0.3",
"description": "Very very small certificates for strong authentication",
"engines": {
"node": ">= 10.13 <11"
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"browserify": "^16.2.3",
"jest": "~23.6.0",
"prettier": "1.15.3",
"rimraf": "^2.6.3",
"ts-jest": "~23.10.5",
"tslint": "~5.12.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "~6.0.0",
"tsutils": "~3.7.0",
"typedoc": "^0.14.2",
"typescript": "^3.2.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"doc": "typedoc --out ./doc ./src/",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Gian-Luca Frei",
"license": "Apache-2.0",
"dependencies": {
"elliptic": "^6.4.1",
"jshashes": "^1.0.7",
"msgpack-lite": "^0.1.26",
"tslib": "~1.9.3"
}
}