-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.13 KB
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
52
53
54
{
"name": "@degjs/fetch-utils",
"version": "3.0.3",
"description": "A utility library for using the Javascript Fetch API.",
"keywords": [
"fetch",
"ajax",
"DEGJS"
],
"author": {
"name": "Aaron Ladage",
"email": "aladage@degdigital.com",
"url": "http://aaronladage.com"
},
"contributors": [
{
"name": "Ryan Heap",
"email": "rheap@degdigital.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/fetchUtils.git"
},
"files": [
"src"
],
"main": "src/fetchUtils.js",
"bugs": "https://github.com/DEGJS/fetchUtils/issues",
"scripts": {
"build-demo": "rollup --config rollup.config.js && rsync -av --exclude='js/main.js' demo/src/ demo/dist",
"deploy-demo": "./deploy-demo.sh"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": ">1%, ie 11"
}
]
]
},
"publishConfig": {
"access": "public"
}
}