-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (108 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (108 loc) · 3.46 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
109
{
"name": "speech_explorer",
"version": "1.0.0",
"description": "speech explorer",
"main": "electron.js",
"scripts": {
"test": "node node_modules/grunt-cli/bin/grunt",
"unittest": "_mocha test/unit/**/*.js",
"cucumber": "cp public/index.html test/public/ & cp public/assets/css/*.css test/public/assets/css/ & node_modules/webpack/bin/webpack.js --define process.env.NODE_ENV='\"development\"' --config webpack.test.config.js & NODE_ENV=development node_modules/.bin/cucumberjs test/features",
"cucumber2": "./node_modules/webpack/bin/webpack.js --define process.env.NODE_ENV='\"development\"' --config webpack.test.config.js & NODE_ENV=development node_modules/.bin/cucumberjs test/features",
"build": "./node_modules/webpack/bin/webpack.js --config webpack.config.js",
"heroku-postbuild": "mkdir lib/dat/build & wget https://raw.githubusercontent.com/SSGL-SEP/dat.gui/master/build/dat.gui.min.js -O lib/dat/build/dat.gui.min.js & webpack -p --config webpack.config.js --progress",
"start": "node app/server.js",
"dev": "grunt serve-and-watch",
"submodule": "git submodule update --init && git submodule update --remote",
"pack": "electron-builder --dir",
"dist": "npm install && npm run build && rm -rf dist && electron-builder",
"build-win": "./node_modules/.bin/webpack --config webpack.config.js",
"dist-win": "npm install --no-optional && npm run build-win && electron-builder --win --ia32",
"createconfig": "node createConfig.js",
"electron": "./node_modules/.bin/electron ."
},
"build": {
"appId": "SEP",
"asar": "false",
"mac": {
"target": [
"dmg",
"pkg",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"tar.gz"
]
},
"nsis": {
"oneClick": false,
"perMachine": false
},
"win": {
"target": [
"zip",
"portable",
"nsis"
]
},"files": [
"public",
"lib",
"electron.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSGL-SEP/speech_explorer.git"
},
"author": "SSGL-SEP <no@email.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSGL-SEP/speech_explorer/issues"
},
"homepage": "https://github.com/SSGL-SEP/speech_explorer#readme",
"devDependencies": {
"appium": "^1.5.2",
"chai": "^3.5.0",
"chai-as-promised": "^7.0.0",
"chromedriver": "2.30.1",
"cucumber": "^2.0.0",
"electron-builder": "19.7.1",
"form-data": "^2.2.0",
"geckodriver": "^1.6.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-env": "^0.4.4",
"grunt-exec": "^0.4.7",
"grunt-nodemon": "^0.4.2",
"grunt-run": "^0.6.0",
"grunt-webpack": "^3.0.0",
"istanbul": "^0.4.5",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.0.0",
"mock-local-storage": "^1.0.2",
"sanitize-filename": "^1.6.0",
"selenium-webdriver": "^3.4.0",
"sinon": "^2.3.4",
"electron-builder-squirrel-windows": "19.7.0",
"electron": "latest"
},
"dependencies": {
"app-root-path": "^2.0.1",
"audio-context-polyfill": "^1.0.0",
"es6-promise": "^4.1.0",
"express": "^4.15.2",
"jszip": "^3.1.3",
"jszip-utils": "0.0.2",
"opn": "^5.1.0",
"three": "^0.85.2",
"webpack": "^2.5.1"
},
"keywords": []
}