forked from bradmartin/nativescript-image-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "nativescript-image-filters",
"version": "2.0.0",
"description": "NativeScript plugin to apply filters to your images.",
"main": "imagefilters",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"core3": "true",
"category": "Interface"
},
"tns-ios": {
"version": "3.1.0"
}
},
"scripts": {
"build": "tsc",
"demo.ios": "npm run preparedemo && cd demo && tns emulate ios",
"demo.android": "npm run preparedemo && cd demo && tns run android",
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-image-filters && tns plugin add .. && tns install",
"setup": "cd demo && npm install && cd .. && npm run build && cd demo && tns plugin add .. && cd ..",
"precommit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"repository": "https://github.com/bradmartin/nativescript-image-filters.git",
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS",
"TypeScript",
"bradmartin",
"nStudio",
"Image Filter",
"Image Editing"
],
"author": "Brad Martin <[email protected]> (https://github.com/bradmartin)",
"bugs": {
"url": "https://github.com/bradmartin/nativescript-image-filters/issues"
},
"homepage": "https://github.com/bradmartin/nativescript-image-filters",
"readmeFilename": "README.md",
"devDependencies": {
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4",
"tns-core-modules": "^3.0.0",
"tns-platform-declarations": "^3.0.0",
"typescript": "^2.2.2"
},
"peerDependencies": {
"tns-core-modules": "^3.0.0"
},
"license": "MIT",
"dependencies": {}
}