forked from zeyneloz/onesignal-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "onesignal-node",
"version": "3.2.0",
"description": "A Node.js Library for OneSignal push notification service",
"engines": {
"node": ">=8.13.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"lint": "./node_modules/.bin/eslint src test --ext .js,.ts",
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/mocha -r ts-node/register 'test/unit/**/*.spec.ts'",
"test-integration": "./node_modules/.bin/mocha -r ts-node/register 'test/integration/**/*.spec.ts'",
"coverage": "./node_modules/.bin/nyc --reporter=lcov npm run test",
"update-codecov": "./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeyneloz/onesignal-node.git"
},
"keywords": [
"onesignal",
"one-signal",
"gcm",
"signal",
"notification"
],
"author": "Zeynel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeyneloz/onesignal-node.git/issues"
},
"homepage": "https://github.com/zeyneloz/onesignal-node.git#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/chai-string": "^1.4.2",
"@types/mocha": "^5.2.7",
"@types/nock": "^11.1.0",
"@types/node": "^12.12.42",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"@types/sinon": "^7.5.2",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"codecov": "^3.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"mocha": "^6.2.3",
"nock": "^11.9.1",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.1",
"typedoc": "^0.15.8",
"typescript": "^3.9.3"
},
"dependencies": {
"request": "^2.88.2",
"request-promise": "^4.2.5"
}
}