-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 965 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 965 Bytes
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
{
"name": "feq",
"description": "A mini pack of fetch api",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exound/feq.git"
},
"contributors": [
{
"name": "GGmega",
"email": "ggmega@exound.com"
},
{
"name": "Kaid",
"email": "kaid@exound.com"
}
],
"keywords": [
"fetch",
"http"
],
"main": "dist/feq.js",
"scripts": {
"prepublish": "node_modules/.bin/babel src/feq.js -o dist/feq.js",
"test": "node_modules/.bin/mocha --compilers js:babel/register --reporter dot ./test/*.test.js",
"test:watch": "node_modules/.bin/mocha --compilers js:babel/register --reporter dot --watch ./test/*.test.js"
},
"files": [
"HISTORY.md",
"dist/feq.js"
],
"dependencies": {
"isomorphic-fetch": "~2.1.1"
},
"devDependencies": {
"babel": "~5.8.23",
"mocha": "~2.3.1",
"koa": "latest",
"chai": "~2.1.0"
}
}