-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 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
32
33
{
"name": "cloudpier-push-dispatcher",
"version": "1.0.0",
"description": "Cloudpier's push notifications dispatcher microservice",
"main": "index.js",
"repository": "https://github.com/line64/cloudpier-push-dispatcher.git",
"author": "Line64",
"license": "MIT",
"scripts": {
"compile": "babel -d ./dist ./src",
"test": "mocha test/*",
"prestart": "babel -d ./dist ./src",
"start": "node dist/index.js | bunyan"
},
"dependencies": {
"apn": "^2.1.2",
"bunyan": "^1.8.5",
"node-gcm": "^0.14.4",
"reef-service": "^1.0.0-beta.7"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.18.0",
"dotenv": "^2.0.0"
}
}