-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "node-signed-requests",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "./node_modules/mocha/bin/mocha --require ts-node/register 'test/**/*.ts' --exit"
},
"author": "Chris Hayes",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"deepmerge": "^2.1.0",
"moment": "^2.22.0",
"restify": "^8.4.0",
"restify-errors": "^8.0.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/nock": "^9.1.2",
"@types/node": "^9.6.2",
"@types/restify": "^5.0.7",
"@types/restify-errors": "^4.3.2",
"@types/sinon": "^4.3.1",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nock": "^9.2.3",
"sinon": "^7.4.0",
"ts-node": "^5.0.1",
"tslint": "^5.18.0",
"typescript": "^2.8.1"
}
}