-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
{
"name": "@hotloop/hotloop-sdk",
"version": "2.0.2",
"description": "A package for interacting with HotLoop",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --config test/support/unit.yaml",
"coverage": "nyc npm test",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotloop/hotloop-sdk.git"
},
"keywords": [
"HotLoop",
"sdk"
],
"author": "hotloop.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/hotloop/hotloop-sdk/issues"
},
"homepage": "https://github.com/hotloop/hotloop-sdk#readme",
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov"
]
},
"files": [
"dist/"
],
"devDependencies": {
"@types/chai": "4.2.14",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "8.2.0",
"@types/nock": "11.1.0",
"@types/node": "14.14.16",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"mocha": "8.2.1",
"nock": "13.0.5",
"nyc": "15.1.0",
"sinon": "9.2.2",
"sinon-chai": "3.5.0",
"ts-node": "9.1.1",
"tslint": "5.20.1",
"tslint-config-standard": "9.0.0",
"typescript": "4.1.3"
},
"dependencies": {
"axios": "0.21.1",
"axios-retry": "3.1.9",
"google-auth-library": "6.1.4"
}
}