-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.55 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
{
"name": "pine-notification-service",
"version": "1.0.0",
"description": "REST API to send push notifications to Pine users.",
"main": "src/server.js",
"scripts": {
"start": "node build/index.js",
"dev": "NODE_ENV=development node src/index.dev.js",
"build": "./node_modules/.bin/babel ./src -d ./build",
"test": "node_modules/.bin/nyc node_modules/.bin/_mocha --require @babel/register --exit -- \"test/**/*.test.js\"",
"lint": "./node_modules/.bin/eslint --ext .js src/ test/",
"coveralls": "node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/coveralls"
},
"author": "Timothy E. Johansson <timothy@blockfirm.se>",
"website": "https://pine.pm",
"copyright": "© 2020 Blockfirm AB",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/blockfirm/pine-notification-service.git"
},
"dependencies": {
"apn": "git+https://github.com/node-apn/node-apn.git#3.0.0",
"jsonwebtoken": "^8.5.1",
"restify": "^8.5.1",
"restify-errors": "^6.1.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"coveralls": "^3.0.11",
"eslint": "^4.7.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"proxyquire": "^1.8.0",
"sinon": "^4.0.0",
"uuid": "^3.4.0",
"yargs": "^13.3.2"
}
}