forked from ngpbento/meteor-ddp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 700 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 700 Bytes
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
{
"name": "ddp-client",
"version": "1.0.0",
"description": "A modern JS client for Meteor's DDP.",
"main": "dist/ddp-client.js",
"scripts": {
"build": "babel ddp-client.js -o dist/ddp-client.js",
"watch": "babel ddp-client.js -o dist/ddp-client.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seeekr/ddp-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seeekr/ddp-client/issues"
},
"homepage": "https://github.com/seeekr/ddp-client#readme",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0"
}
}