forked from GSA/code-gov-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "@code.gov/api-client",
"version": "0.0.3",
"description": "Client for Interacting with Code.gov API",
"main": "build/index.js",
"types": "src/index.ts",
"scripts": {
"build": "tsc",
"build-docs": "tsc && documentation build build/index.js --config documentation.yml -f html -o docs",
"test": "tsc && ./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSA/code-gov-api-client.git"
},
"keywords": [
"Open-Source",
"Government"
],
"author": {
"name": "Code.gov Team",
"url": "https://code.gov",
"email": "code@gsa.gov"
},
"contributors": [
{
"name": "Daniel J. Dufour",
"url": "https://github.com/danieljdufour"
}
],
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GSA/code-gov-api-client/issues"
},
"homepage": "https://github.com/GSA/code-gov-api-client#readme",
"devDependencies": {
"chai": "^4.1.2",
"documentation": "^5.3.5",
"http-server": "^0.11.1",
"mocha": "^5.0.0",
"typescript": "^2.6.2"
},
"dependencies": {
"node-fetch": "^1.7.3"
}
}