-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 3.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hone",
"version": "2.10.8",
"description": "An SDK for interacting with Hone.",
"homepage": "https://github.com/honeinc/hone-sdk",
"repository": {
"type": "git",
"url": "git://github.com/honeinc/hone-sdk.git"
},
"main": "./index.js",
"scripts": {
"test": "browserify test/* | tape-run -b firefox",
"build": "npm run bundle && npm run bundle-iframehelper && npm run compress && npm run compress-iframehelper && npm run copysource",
"bundle": "mkdir -p build/$npm_package_version/ && browserify -p bundle-collapser/plugin index.js --standalone Hone --debug | derequire --to _hreq__ | exorcist build/$npm_package_version/hone.js.map > build/$npm_package_version/hone.js",
"bundle-iframehelper": "mkdir -p build/$npm_package_version/ && browserify -p bundle-collapser/plugin iframehelper.js --standalone HoneIFrameHelper --debug | derequire --to _hreqif | exorcist build/$npm_package_version/iframe.js.map > build/$npm_package_version/iframe.js",
"compress": "mkdir -p build/$npm_package_version/ && uglifyjs --screw-ie8 --stats --compress --beautify ascii_only=true,beautify=false build/$npm_package_version/hone.js --in-source-map build/$npm_package_version/hone.js.map --source-map build/$npm_package_version/hone.min.js.map --source-map-url hone.min.js.map --output build/$npm_package_version/hone.min.js",
"compress-iframehelper": "mkdir -p build/$npm_package_version/ && uglifyjs --screw-ie8 --stats --compress --beautify ascii_only=true,beautify=false build/$npm_package_version/iframe.js --in-source-map build/$npm_package_version/iframe.js.map --source-map build/$npm_package_version/iframe.min.js.map --source-map-url iframe.min.js.map --output build/$npm_package_version/iframe.min.js",
"copysource": "mkdir -p build/$npm_package_version/ && cp -r index.js iframehelper.js src build/$npm_package_version",
"publish": "gulp publish",
"stats": "browserify --full-paths index.js | discify --open",
"stats-iframehelper": "browserify --full-paths iframehelper.js | discify --open",
"deps": "browserify-graph index.js",
"deps-iframehelper": "browserify-graph iframehelper.js"
},
"keywords": [
"hone"
],
"company": "Hone Inc (http://gohone.com)",
"contributors": [
{
"name": "Andy Burke",
"email": "[email protected]",
"url": "http://github.com/andyburke"
},
{
"name": "Jacob Lowe",
"email": "[email protected]",
"url": "http://github.com/jcblw"
}
],
"license": "MIT",
"devDependencies": {
"browserify": "^6.1.0",
"browserify-graph": "0.0.0",
"bundle-collapser": "^1.1.4",
"derequire": "^1.2.1",
"disc": "^1.3.2",
"exorcist": "^0.1.6",
"gulp": "^3.8.8",
"minimist": "^1.1.0",
"rsyncwrapper": "^0.4.1",
"tape": "^3.5.0",
"tape-run": "^0.3.0",
"uglify-js": "^2.4.16",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0"
},
"dependencies": {
"ajaja": "0.1.1",
"antisync": "0.0.1",
"browser-event-bus": "^1.0.2",
"bson-objectid": "andyburke/bson-objectid",
"deep-diff": "^0.2.0",
"delver": "0.0.10",
"eventemitter2": "^0.4.14",
"extend": "^2.0.0",
"localforage": "^1.0.4",
"ubid": "^0.1.2"
}
}