-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 868 Bytes
/
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
{
"name": "opensecrets-api",
"version": "1.0.0",
"description": "simple javascript library for the CPR OpenSecrets API",
"main": "index.js",
"scripts": {
"build": "npm run clean && mkdirp dist && babel src -d dist",
"clean": "rimraf dist",
"start": "npm run build && node dist",
"test": "ava"
},
"keywords": [
"opensecrets",
"api"
],
"author": "Dylan Ross Ludwick",
"license": "ISC",
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"dotenv": "^4.0.0",
"isomorphic-fetch": "^2.2.1",
"pify": "^3.0.0"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
}
}