-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 848 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 848 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
{
"name": "fetchival",
"version": "0.3.3",
"description": "Makes JSON requests with fetch easier",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/tests.js",
"uglify": "uglifyjs -m -r fetchival index.js > index.min.js",
"size": "uglifyjs -m -r fetchival index.js | gzip -9f | wc -c"
},
"repository": {
"type": "git",
"url": "https://github.com/typicode/fetchival.git"
},
"keywords": [
"fetch",
"API",
"JSON",
"REST"
],
"author": "Typicode <typicode@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/fetchival/issues"
},
"homepage": "https://github.com/typicode/fetchival",
"devDependencies": {
"chai": "^2.2.0",
"mocha": "^2.2.4",
"node-fetch": "^1.1.1",
"uglify-js": "^2.4.20"
}
}