-
Notifications
You must be signed in to change notification settings - Fork 269
/
package.json
30 lines (30 loc) · 885 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
{
"name": "xdomain",
"version": "0.8.2",
"description": "A pure JavaScript CORS alternative",
"browser": "dist/xdomain.js",
"main": "src/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jpillora/xdomain"
},
"keywords": ["cors", "ie8", "polyfill"],
"author": {
"name": "Jaime Pillora",
"email": "[email protected]"
},
"scripts": {
"dev":
"parcel watch --no-source-maps --public-url . src/browser.js -o xdomain",
"devfile":
"parcel watch --no-hmr --no-source-maps --public-url . src/browser.js -o xdomain",
"build":
"parcel build --public-url . src/browser.js --no-minify -o xdomain && parcel build src/browser.js --no-source-maps --detailed-report -o xdomain.min"
},
"devDependencies": {
"array.from": "^1.0.3",
"parcel-bundler": "^1.7.0"
},
"dependencies": {}
}