forked from parse-community/parse-server-push-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 987 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
{
"name": "parse-server-push-adapter",
"version": "1.1.0",
"description": "Base parse-server-push-adapter",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "./node_modules/.bin/babel src/ -d lib/",
"test": "TESTING=1 babel-node ./node_modules/.bin/isparta cover --root src/ ./node_modules/jasmine/bin/jasmine.js",
"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.6.5",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"codecov": "^1.0.1",
"isparta": "^4.0.0",
"jasmine": "^2.4.1"
},
"dependencies": {
"apn": "^1.7.8",
"node-gcm": "^0.14.0",
"npmlog": "^2.0.3",
"parse": "^1.8.1"
}
}