forked from parse-community/parse-server-push-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1013 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "parse-server-push-adapter",
"version": "2.0.0-alpha.1",
"description": "Base parse-server-push-adapter",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "./node_modules/.bin/babel src/ -d lib/",
"test": "TESTING=1 nyc ./node_modules/.bin/jasmine",
"prepublish": "npm run build"
},
"keywords": [
"parse-server",
"push",
"adapter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/parse-server-modules/parse-server-push-adapter.git"
},
"author": "Parse",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"codecov": "2.2.0",
"jasmine": "2.6.0",
"jasmine-spec-reporter": "^4.0.0",
"nyc": "^11.0.2"
},
"dependencies": {
"apn": "^2.1.3",
"node-gcm": "^0.14.0",
"npmlog": "^4.0.2",
"parse": "^1.9.2"
},
"engines": {
"node": ">= 4.6.0"
}
}