-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "@aerogear/unifiedpush-cli",
"version": "1.0.3",
"description": "UnifiedPush Server CLI client",
"author": "AeroGear Team<[email protected]>",
"homepage": "http://aerogear.org",
"license": "Apache-2.0",
"main": "build/src/index.js",
"bin": {
"ups": "./build/src/index.js"
},
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"keywords": [
"aerogear",
"unifiedpush"
],
"scripts": {
"test": "jest",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run snyk-protect && npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"lint": "gts lint",
"snyk-protect": "snyk protect"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "14.18.36",
"@types/table": "6.0.0",
"@types/yargs": "17.0.3",
"gts": "3.1.0",
"guid-typescript": "1.0.9",
"jest": "27.2.5",
"nock": "13.3.0",
"ts-jest": "27.0.5",
"ts-node": "10.3.0",
"typescript": "4.9.4"
},
"dependencies": {
"@aerogear/unifiedpush-admin-client": "4.5.0",
"eslint-plugin-jest": "^25.0.0",
"table": "^6.0.0",
"yargs": "^17.0.1",
"snyk": "^1.518.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aerogear/unifiedpush-cli.git"
},
"bugs": {
"url": "https://github.com/aerogear/unifiedpush-cli/issues"
},
"snyk": true
}