This repository was archived by the owner on Feb 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.59 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.59 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
{
"name": "gamifivesdk",
"version": "2.0.6",
"description": "",
"main": "src/index_web.js",
"repository": {
"type": "git",
"url": "git@github.com:BuongiornoMIP/GamifiveSDK.git"
},
"scripts": {
"vhost:keys": "sh compile_vhost.sh",
"docs": "rm docs -rf && node_modules/.bin/jsdoc src/components -r -d docs",
"prebuild": "sh getrevision.sh",
"build": "npm run build:prod && npm run build:debug && npm run minify",
"build:debug": "export NODE_ENV=debug && npm run vhost:keys && browserify src/builders/build.js -o debug/gfsdk.js -s GamifiveSDK",
"build:dev": "export NODE_ENV=testing && npm run vhost:keys && browserify src/builders/build.js -o dist/gfsdk.js -s GamifiveSDK && npm run minify",
"build:prod": "export NODE_ENV=production && npm run vhost:keys && browserify src/builders/build.js -o dist/gfsdk.js -s GamifiveSDK && npm run minify",
"minify": "uglifyjs dist/gfsdk.js --compress --mangle --dead-code --source-map dist/gfsdk.min.js.map --output dist/gfsdk.min.js",
"test:develop": "export NODE_ENV=testing && npm run vhost:keys && karma start",
"test": "export NODE_ENV=testing && npm run vhost:keys && karma start --no-auto-watch --single-run",
"upload:integration": "scp -r dist/* super@192.168.124.3:/dadanet2/webstore2/htdocs/test/fabiof/sdk_integration_test/c2701133414427fee732e051abdfe3e8",
"upload:dist": "scp -r dist/* super@192.168.124.3:$npm_package_config_release_folder",
"upload:debug": "scp -r debug/* super@192.168.124.3:$npm_package_config_debug_folder",
"upload": "npm run upload:dist && npm run upload:debug",
"preversion": "npm run test",
"version": "npm run build && git add src/version.js",
"postversion": "git push --tags",
"serve": "http-server debug/ -p 5050 -a local.appsworld.gamifive-app.com"
},
"config": {
"release_folder": "/dadanet2/wl2/webstore_html5game/js/webstore_html5game/gfsdk/2.x.x/dist/",
"debug_folder": "/dadanet2/wl2/webstore_html5game/js/webstore_html5game/gfsdk/2.x.x/debug/"
},
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"bower": "^1.7.9",
"browserify": "^13.0.0",
"browserify-istanbul": "^2.0.0",
"catharsis": "^0.8.7",
"coveralls": "^2.11.9",
"envify": "^3.4.1",
"isparta": "^4.0.0",
"istanbul": "^0.4.3",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.4.1",
"jsdoc": "^3.2.2",
"karma": "^0.13.22",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.2",
"karma-commonjs": "0.0.13",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-growl-reporter": "^0.1.1",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^0.3.8",
"karma-mocha-reporter": "^1.1.3",
"karma-phantomjs-launcher": "^0.2.3",
"karma-spec-reporter": "0.0.22",
"openurl": "^1.1.1",
"phantomjs": "^2.1.7",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "^2.1.7",
"taffydb": "^2.7.2",
"watchify": "^3.7.0"
},
"dependencies": {
"http-francis": "^0.1.6",
"localforage": "^1.4.3",
"newton-adapter": "^1.5.0",
"platform": "^1.3.3",
"promise-polyfill": "^5.0.0",
"stargatejs": "^0.2.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
],
"comments": false
}
],
"envify"
]
}
}