-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "nativescript-image-colors",
"version": "1.1.0",
"description": "NativeScript colors from images.",
"main": "nativescript-image-colors.js",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.2.0",
"ios": "2.2.1"
}
},
"scripts": {
"build": "tsc",
"demo.ios": "npm run preparedemo && cd demo && tns run ios",
"demo.android": "npm run preparedemo && cd demo && tns run android",
"preparedemo": "npm run build && cd demo && npm remove nativescript-image-colors && npm i .. -S",
"setup": "npm i && cd demo && npm i && cd .. && npm run build && cd demo && tns plugin add .. && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/TheOriginalJosh/nativescript-image-colors.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS"
],
"author": {
"name": "Josh Sommer",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/TheOriginalJosh/nativescript-image-colors/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/TheOriginalJosh/nativescript-image-colors/blob/master/LICENSE"
},
"homepage": "https://github.com/TheOriginalJosh/nativescript-image-colors",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^3.1.0",
"tns-platform-declarations": "3.1.0"
},
"dependencies": {
"typescript": "^2.3.4"
}
}