-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 935 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
31
{
"name": "panel-bridge-client",
"version": "1.0.1",
"description": "Client library for connecting to panel bridge",
"main": "lib/bridge.js",
"scripts": {
"prepublish": "mkdir -p lib && ./node_modules/.bin/browserify -t coffeeify --extension=\".coffee\" src/main.coffee | ./node_modules/.bin/uglifyjs > lib/bridge.js"
},
"repository": {
"type": "git",
"url": "https://github.com/panels/bridge-client"
},
"bugs": {
"url": "https://github.com/panels/bridge-client/issues"
},
"author": "Tomas Hanacek <[email protected]> (https://github.com/tomashanacek)",
"contributors": [
"Marek Hrabe <[email protected]> (https://github.com/marekhrabe)"
],
"license": "MIT",
"devDependencies": {
"browserify": "^4.1.10",
"coffeeify": "^0.6.0",
"uglify-js": "^2.4.14"
},
"dependencies": {
"browserify": "^11.0.1",
"coffeeify": "^1.1.0",
"uglify-js": "^2.4.24"
}
}