-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 3.23 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 3.23 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
{
"name": "InspectorWidgetIterator",
"description": "Browse (screen + input events), Program (annotations), Analyze (workflows)",
"homepage": "https://github.com/InspectorWidget/InspectorWidgetIterator",
"author": "Christian Frisson",
"version": "1.0.0",
"license": "GPL-3.0",
"licenseText": "/**\n * Copyright (c) 2015 Christian Frisson\n * This file is part of InspectorWidgetIterator\n\n * InspectorWidgetIterator is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n * Redistributions of source code, javascript and css minified versions\n * must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n * Neither the name of the copyright holder nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n\n * You should have received a copy of the GNU General Public License\n * along with InspectorWidgetIterator. If not, see <http://www.gnu.org/licenses/>\n\n *\n * InspectorWidgetIterator is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n */\n\n",
"repository": {
"type": "git",
"url": "https://github.com/InspectorWidget/InspectorWidgetIterator.git"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-webfont": "^0.5.1",
"grunt-contrib-uglify": "~0.7.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.7.0",
"grunt-html-build": "~0.4.1",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-less": "~1.0.0",
"grunt-sonar-runner": "~2.4.2",
"grunt-contrib-compress": "~0.13.0",
"grunt-contrib-qunit": "~0.5.2",
"grunt-contrib-yuidoc": "~0.7.0",
"grunt-git-deploy": "~0.1.1",
"electron": "^1.4.1",
"browserify": "*",
"debowerify": "*",
"appdmg": "*"
},
"dependencies": {
"InspectorWidgetProcessor": "https://github.com/InspectorWidget/InspectorWidgetProcessor.git",
"express": "4.13.4",
"socket.io": "1.7.2",
"glob": "7.0.3",
"socket.io-client": "*",
"electron-packager": "*",
"vex-js": "^3.1.0"
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "1.6.1"
},
"cmake-js-inactive": {
"runtime": "node",
"runtimeVersion": "7.4.0"
},
"main": "main.js",
"scripts": {
"browserify": "browserify -t debowerify --debug ./js/inspectorwidget-init.js -o ./js/inspectorwidget-init-browserified.js",
"start": "node ./node_modules/.bin/electron .",
"server": "node ./server.js",
"pack:darwin": "dir=./build/InspectorWidgetIterator-darwin-x64;if [ -e $dir ]; then rm -dfr $dir; fi && ./node_modules/.bin/electron-packager . --icon=./icon/InspectorWidgetIterator --overwrite=true --arch=all --platform=darwin --out=build",
"dist:darwin": "dmg=InspectorWidgetIterator-x64-$(git rev-parse --short HEAD).dmg;if [ -e build/$dmg ]; then rm build/$dmg; fi && ./node_modules/.bin/appdmg ./config/appdmg.json build/$dmg -v"
}
}