-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 916 Bytes
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": "golfnow",
"version": "0.10.2",
"description": "Node.js SDK for GolfNow",
"author": "Alejandro Labrada Diaz <alabradadiaz@gmail.com>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aleplusplus/golfnow-node-js.git"
},
"keywords": [
"golfnow", "golf", "api"
],
"bugs": {
"url": "https://github.com/aleplusplus/golfnow-node-js/issues"
},
"homepage": "https://github.com/aleplusplus/golfnow-node-js#readme",
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
},
"scripts": {
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
}
}