-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 914 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": "cometd",
"version": "0.0.1",
"description": "A implementation of the CometD client library as an ES6 module.",
"main": "lib/index.js",
"scripts": {
"build:dist": "browserify src/index.js --standalone CometD --outfile dist/cometd.js -t [ babelify --presets [ es2015 ] ]",
"build:lib": "babel src --out-dir lib --presets es2015",
"prepublish": "npm run build:dist && npm run build:lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seansfkelley/cometd-es6.git"
},
"author": "seansfkelley@gmail.com",
"license": "n/a",
"bugs": {
"url": "https://github.com/seansfkelley/cometd-es6/issues"
},
"homepage": "https://github.com/seansfkelley/cometd-es6#readme",
"keywords": [
"cometd"
],
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0"
}
}