forked from parse-community/parse-server-push-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 KB
/
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
45
46
47
48
49
50
51
52
53
{
"name": "@parse/push-adapter",
"version": "6.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 nyc ./node_modules/.bin/jasmine",
"prepare": "npm run build"
},
"keywords": [
"parse-server",
"push",
"adapter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/parse-community/parse-server-push-adapter.git"
},
"author": "Parse",
"license": "MIT",
"dependencies": {
"@parse/node-apn": "6.0.1",
"@parse/node-gcm": "1.0.2",
"firebase-admin": "12.1.0",
"npmlog": "7.0.1",
"parse": "5.0.0",
"web-push": "3.6.7"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"codecov": "3.7.1",
"jasmine": "2.8.0",
"jasmine-spec-reporter": "4.0.0",
"nyc": "14.1.1",
"semantic-release": "17.4.6"
},
"engines": {
"node": ">=18.0.0 <21"
}
}