This repository was archived by the owner on Jun 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
81 lines (81 loc) · 2.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nativescript-pdf-view",
"version": "0.0.0-development",
"description": "A NativeScript plugin to display PDF files on iOS and Android",
"main": "pdf-view",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
}
},
"scripts": {
"build": "tsc",
"commit": "git-cz",
"commitmsg": "cz-customizable-ghooks",
"demo.ios": "npm run preparedemo && cd demo && tns run ios --emulator",
"demo.ios.device": "npm run preparedemo && cd demo && tns run ios",
"demo.android": "npm run preparedemo && cd demo && tns run android --emulator",
"lint": "tslint --project tsconfig.json --type-check -t stylish",
"test.ios": "cd demo && tns test ios --emulator",
"test.ios.device": "cd demo && tns test ios",
"test.android": "cd demo && tns test android",
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-pdf-view && tns plugin add .. && tns install",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"setup": "yarn && cd demo && npm i && cd .. && npm run build && cd demo && tns plugin add .. && cd .."
},
"release": {
"generateNotes": "./node_modules/@semantic-release/release-notes-generator",
"verifyConditions": [
"./node_modules/@semantic-release/condition-codeship"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Merott/nativescript-pdf-view.git"
},
"keywords": [
"Android",
"JavaScript",
"NativeScript",
"PDF",
"View",
"iOS"
],
"author": {
"name": "Merott Movahedi",
"email": "merott@merott.com"
},
"bugs": {
"url": "https://github.com/Merott/nativescript-pdf-view/issues"
},
"license": "MIT",
"homepage": "https://github.com/Merott/nativescript-pdf-view",
"readmeFilename": "README.md",
"devDependencies": {
"@semantic-release/condition-codeship": "^1.1.0",
"@semantic-release/release-notes-generator": "^2.0.0",
"commitizen": "^2.9.6",
"cz-customizable": "^5.0.0",
"cz-customizable-ghooks": "^1.5.0",
"husky": "^0.13.3",
"prompt": "~1.0.0",
"rimraf": "~2.6.1",
"semantic-release": "^6.3.6",
"tns-core-modules": "~3.0.0",
"tns-platform-declarations": "^3.0.1",
"tslint": "^5.2.0",
"tslint-stylish": "^2.1.0",
"typescript": "~2.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
}
}