This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
69 lines (69 loc) · 2.05 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@code.gov/api-client",
"version": "0.4.2",
"description": "Client for Interacting with Code.gov API",
"main": "dist/bundle.js",
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js --config ./config/webpack/webpack.prod.js",
"build-docs": "documentation build src/index.js --config documentation.yml -f html -o docs",
"lint": "node_modules/eslint/bin/eslint.js src",
"fix-lint": "node_modules/eslint/bin/eslint.js --fix src",
"test": "./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": "[email protected]"
},
"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": {
"acorn": "^6.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"cname-webpack-plugin": "^1.0.3",
"copy-webpack-plugin": "^6.1.1",
"documentation": "^13.0.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"http-server": "^0.12.3",
"mocha": "^7.1.2",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@code.gov/cautious": "0.3.0",
"axios": "^0.18.0"
}
}