-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 838 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
{
"name": "response-giver",
"version": "1.0.0",
"description": "A module that, given an error string, returns a response message",
"main": "js-src/index.js",
"types": "js-src/index.d.ts",
"scripts": {
"test": "mocha js-src/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Giovarco/response-giver"
},
"keywords": [
"json",
"response",
"message",
"error"
],
"author": "Mario Mignemi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Giovarco/response-giver/issues"
},
"homepage": "https://github.com/Giovarco/response-giver#readme",
"dependencies": {
"@types/winston": "^2.3.5",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"chai": "^4.1.2",
"mocha": "^3.5.0"
}
}