-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "jmpr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "http-server -p 8080 -c-1 www",
"webpack": "webpack",
"lint": "eslint www/js/**/*.js",
"watch": "webpack -w",
"build": "webpack && cordova build",
"build:release": "webpack -p && cordova build --release",
"run:ios": "webpack && cordova run ios",
"run:ios:sim": "webpack && cordova emulate ios",
"run:browser": "webpack && cordova run browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kerrishotts/jmpr.git"
},
"author": "Kerri Shotts",
"bugs": {
"url": "https://github.com/kerrishotts/jmpr/issues"
},
"homepage": "https://github.com/kerrishotts/jmpr#readme",
"devDependencies": {
"cordova": "^7.0.1",
"eslint": "^3.19.0",
"http-server": "^0.9.0",
"raw-loader": "^0.5.1",
"ts-loader": "^2.0.3",
"typescript": "^2.3.4",
"webpack": "^2.4.1"
},
"dependencies": {
"cordova-android": "~6.2.1",
"cordova-browser": "^4.1.0",
"cordova-ios": "^4.4.0",
"cordova-plugin-whitelist": "^1.3.2",
"svg-injector": "^1.1.3",
"three": "^0.85.0",
"waud.js": "^0.9.9"
},
"cordova": {
"platforms": [
"android",
"browser",
"ios"
],
"plugins": {
"cordova-plugin-whitelist": {}
}
}
}