-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"name": "@simpliroute/sdk",
"version": "0.0.1",
"description": "SimpliRoute NodeJS, TypeScript, JavaScript API SDK",
"main": "dist/index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest --coverage --verbose",
"test:watch": "jest --verbose --watch"
},
"repository": "git+https://git@github.com:SimpliRoute/simpliroute-sdk-node.git.git",
"keywords": [
"Typescript",
"Node",
"SDK",
"SimpliRoute"
],
"author": "SimpliRoute Developers <developers@simpliroute.com>",
"license": "MIT",
"bugs": {
"url": "https://git@github.com:SimpliRoute/simpliroute-sdk-node.git.git/issues"
},
"homepage": "https://git@github.com:SimpliRoute/simpliroute-sdk-node.git.git#readme",
"devDependencies": {
"@types/axios-mock-adapter": "^1.10.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "24.0.18",
"@types/node": "12.7.4",
"@typescript-eslint/eslint-plugin": "2.2.0",
"@typescript-eslint/parser": "2.2.0",
"axios-mock-adapter": "^1.17.0",
"dotenv": "^8.2.0",
"eslint": "6.3.0",
"jest": "24.9.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"typescript": "3.6.2"
},
"dependencies": {
"axios": "^0.19.0",
"http-status-codes": "^1.3.2"
}
}