-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "handyacme",
"version": "0.1.4",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"**/*.ts\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shiny/HandyAcme.git"
},
"keywords": [
"ACME"
],
"types": "./dist/types/index.d.ts",
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/shiny/HandyAcme/issues"
},
"files": [
"/dist",
"!**/__tests__/*"
],
"homepage": "https://github.com/shiny/HandyAcme#readme",
"dependencies": {
"@peculiar/webcrypto": "^1.4.0",
"@peculiar/x509": "^1.9.2",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/fetch-mock": "^7.3.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
}
}