-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "xdls",
"version": "0.1.9",
"description": "A cross-domain local storage library.",
"repository": {
"type": "git",
"url": "https://github.com/honeinc/xdls.git"
},
"main": "./index.js",
"scripts": {
"build": "mkdir -p build/ && cp $npm_package_main build/$npm_package_name-$npm_package_version.js && browserify -t [ babelify --presets [ es2015 ] --compact=true --comments=false --sourceMap ] $npm_package_main --standalone $npm_package_name --debug | exorcist build/$npm_package_name-$npm_package_version.min.js.map > build/$npm_package_name-$npm_package_version.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"xdls",
"localstorage",
"cross-domain"
],
"company": "Hone Inc (http://gohone.com)",
"author": {
"name": "Andy Burke",
"email": "aburke@bitflood.org",
"url": "http://github.com/andyburke"
},
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"exorcist": "^0.4.0"
},
"dependencies": {
"dataset": "^0.3.2",
"md5": "^1.0.0"
}
}