-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.6 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.6 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vigour-uikit",
"version": "0.6.6",
"description": "uikit containing basic ui elements",
"engines": {
"node": "^4.1.1"
},
"main": "lib/index.js",
"scripts": {
"start": "gaston",
"test": "gaston test",
"build": "gaston build -s example/mtv -o . -i",
"dist": "gaston dist",
"all": "npm run build && ./node_modules/.bin/vNative build",
"ios": "npm run build && ./node_modules/.bin/vNative build --native '{\"selectedPlatforms\":\"ios\"}'",
"android": "npm run build && ./node_modules/.bin/vNative build --native '{\"selectedPlatforms\":\"android\"}'",
"samsungtv": "npm run build && ./node_modulesui/.bin/vNative build --native '{\"selectedPlatforms\":\"samsungtv\"}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigour-io/uikit.git"
},
"keywords": [
"javascript",
"hub",
"communication",
"webrtc",
"websocket",
"xhr"
],
"contributors": [
"Youri <youri@vigour.io",
"Jim de Beer <jim@vigour.io>",
"Nika Tomadze <nika@vigour.io>",
"Shawn Inder <shawn@vigour.io"
],
"gaston": {
"aliasify": {
"uikit": ".",
"vigour-js": "./node_modules/vigour-js",
"vigour-element": "./node_modules/vigour-element"
},
"source-maps": false,
"less-options": {
"strictMath": true
},
"dist": {
"files": [
"build.*",
"assets/**/*.*"
]
}
},
"author": "Vigour.io <dev@vigour.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vigour-io/uikit/issues"
},
"dependencies": {
"vigour-js": "~0.4.4",
"vigour-element": "~0.2.4",
"vigour-scratch": "~1.6.3"
},
"homepage": "https://github.com/vigour-io/uikit#readme",
"vigour": {
"native": {
"plugins": [
"status-bar",
"env",
"network"
],
"platforms": {
"ios": {
"productName": "Vigour UI Kit",
"organizationName": "Vigour",
"organizationIdentifier": "io.vigour.uikit",
"appIcon": "assets/img/icon.png",
"splashScreen": "assets/img/splash.png",
"buildNumber": "1",
"appIndexPath": "build.html",
"NSAllowsArbitraryLoads": true,
"assets": {
"build.html": true,
"build.js": true,
"build.css": true,
"assets": "*"
}
}
}
},
"services": {
"sentinel": {
"branches": [],
"unignoreFolders": []
}
}
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"sinon",
"expect",
"xit"
]
}
}