-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "propublica-congress-sdk",
"version": "0.2.11",
"description": "SDK for ProPublica Congress API",
"keywords": [
"typescript",
"sdk",
"propublica",
"congress",
"api",
"government",
"senate",
"house"
],
"homepage": "https://github.com/njgingrich/propublica-congress-sdk",
"repository": "github:njgingrich/propublica-congress-sdk",
"bugs": "https://github.com/njgingrich/propublica-congress-sdk/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Nathan Gingrich (@njgingrich)",
"license": "MIT",
"private": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.2"
},
"scripts": {
"build": "yarn run build:clean && yarn run build:run",
"build:run": "tsc",
"build:clean": "rm -rf ./dist",
"dev": "yarn run build && node ./dist/index.js",
"prettier": "./node_modules/.bin/prettier -c src/**/*.ts",
"push": "yarn run build && yarn publish"
},
"dependencies": {
"@types/node": "^12.6.8",
"axios": "^0.19.0"
}
}