-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "legible",
"version": "0.2.12",
"description": "cleanly code your api requests",
"main": "dist/index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && mocha --require babel-register --require tests/setup tests/unit --recursive",
"build": "babel src --out-dir dist",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zackify/legible.git"
},
"keywords": [
"request",
"fetch",
"http"
],
"author": "Zach Silveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/zackify/legible/issues"
},
"homepage": "https://github.com/zackify/legible#readme",
"devDependencies": {
"all-contributors-cli": "^3.0.7",
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"form-data": "^2.1.2",
"mocha": "^3.2.0",
"standard": "^8.6.0"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"FormData"
]
}
}