forked from NativeScript/push-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
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
{
"name": "nativescript-ssi-push-notifications",
"version": "1.4.3",
"description": "Receive push notifications in your NativeScript app on Android and iOS.",
"main": "push-plugin",
"typings": "index.d.ts",
"author": "SimpleC",
"bugs": {
"url": "https://github.com/simplec-dev/push-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/simplec-dev/push-plugin.git"
},
"license": "Apache-2.0",
"homepage": "https://github.com/simplec-dev/push-plugin",
"readmeFilename": "README.md",
"nativescript": {
"platforms": {
"ios": "3.0.0",
"android": "3.0.0"
},
"hooks": [
{
"type": "before-prepare",
"script": "hooks/before-prepare.js",
"inject": true
}
]
},
"scripts": {
"build": "npm i && tsc",
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
"clean": "cd ../demo && rimraf hooks node_modules platforms && cd ../src && rimraf node_modules",
"ci.tslint": "npm i && tslint '**/*.ts' --config ../tslint.json --exclude '**/node_modules/**'",
"postinstall": "node scripts/postinstall.js",
"preuninstall": "node scripts/preuninstall.js"
},
"dependencies": {
"nativescript-hook": "~0.2.4"
},
"devDependencies": {
"rimraf": "^2.6.2",
"tns-core-modules": "^3.3.0",
"tns-platform-declarations": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.7.2"
}
}