-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "node-onesignal",
"version": "0.3.1",
"description": "Node wrapper for the One Signal API",
"main": "./dist/client.js",
"scripts": {
"build": "./node_modules/.bin/babel -q -L -D ./lib/ --out-dir ./dist/",
"prepublish": "npm run clean && npm run build",
"test": "npm run prepublish && ava -v -r ./dotenv -r dotenv/config -r babel-register",
"clean": "rm -rf dist/",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scoutforpets/node-onesignal.git"
},
"keywords": [
"onesignal",
"push notification",
"push"
],
"author": "James Dixon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scoutforpets/node-onesignal/issues"
},
"homepage": "https://github.com/scoutforpets/node-onesignal#readme",
"devDependencies": {
"ava": "0.16.0",
"babel-cli": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.16.3",
"babel-runtime": "6.11.6",
"dotenv": "2.0.0",
"find-up": "2.0.0",
"superagent-mock": "1.12.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"joi": "9.1.0",
"superagent": "2.3.0"
}
}