This repository has been archived by the owner on Oct 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "unifiedpush-registration-client",
"version": "0.3.0-dev",
"description": "Registration REST client for the AeroGear UnifiedPush Server",
"main": "index.js",
"scripts": {
"test": "tape test/**/*-test.js | tap-spec",
"lint": "eslint lib/*.js test/**/*.js index.js example.js",
"prepublish": "./node_modules/nsp/bin/nsp check",
"coverage": "istanbul cover tape test/unit/ups-registration-client-test.js tape test/integration/registry-test.js",
"docs": "./node_modules/.bin/jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js ./lib/*.js",
"dependencyCheck": "szero . --ci"
},
"keywords": [
"AeroGear",
"UnifiedPush",
"Unified Push",
"Node.js",
"REST"
],
"files": [
"package.json",
"README.md",
"LICENSE",
"lib",
"example.js",
"index.js"
],
"author": {
"name": "Red Hat, Inc."
},
"maintainers": {
"name": "Lucas Holmquist",
"email": "[email protected]"
},
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "bucharest-gold/unifiedpush-registration-client"
},
"bugs": "https://github.com/bucharest-gold/unifiedpush-registration-client/issues",
"license": "Apache-2.0",
"dependencies": {
"request": "^2.72.0"
},
"devDependencies": {
"eslint": "^3.3.1",
"eslint-config-semistandard": "^7.0.0-beta.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.1.2",
"eslint-plugin-standard": "^2.0.0",
"ink-docstrap": "^1.1.4",
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"nock": "^8.0.0",
"nsp": "^2.3.3",
"proxyquire": "^1.7.9",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"unifiedpush-admin-client": "^0.4.0"
}
}