-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
46
47
48
49
{
"name": "tito-node-api",
"version": "0.3.0",
"description": "nodejs tito api module",
"main": "src/index.js",
"scripts": {
"test": "tape tests/**/*.test.js",
"test:ci": "npm run coverage",
"lint": "semistandard",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"tito",
"node",
"javascript",
"js",
"api"
],
"author": {
"name": "Michael Perrotte",
"email": "mike@mikecorp.ca"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.5",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"winston": "^3.1.0"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"coveralls": "^3.0.0",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"semistandard": "github:mikemimik/semistandard"
},
"directories": {
"lib": "lib",
"resources": "resources"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikemimik/tito-node-api.git"
},
"bugs": {
"url": "https://github.com/mikemimik/tito-node-api/issues"
},
"homepage": "https://github.com/mikemimik/tito-node-api#readme"
}