-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "js-kmb-api",
"description": "Library for querying KMB data",
"version": "3.2.6",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Michael Tsang",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/aes-js": "^3.1.1",
"@types/chai": "^4.2.13",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@types/sinon": "^9.0.8",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.11.0",
"mocha": "^8.1.3",
"nock": "^13.0.4",
"sinon": "^9.2.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"aes-js": "^3.1.2",
"array-flat-polyfill": "^1.0.1",
"axios": "^0.21.1",
"hkscs_converter": "^0.2.0",
"node-storage-shim": "^2.0.1",
"ssl-root-cas": "^1.3.1"
},
"scripts": {
"build": "tsc && cp cert.pem dist",
"lint": "eslint .",
"test": "mocha",
"clean": "rm -fr dist",
"prepack": "yarn clean && yarn run build && yarn run lint && TZ=UTC yarn test"
}
}