-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 4.4 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
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
{
"name": "Hippotomate",
"version": "0.0.2-alpha",
"description": "Develop and debug your automated tests faster",
"main": "main.js",
"scripts": {
"start": "node node_modules/electron/cli.js --enable-logging main.js",
"debug": "node-debug node_modules/electron/cli.js --enable-logging main.js",
"test": "npm-run-all test:*",
"test:unit": "mocha test/**/*Test.js",
"test:e2e": "mocha --require test/e2e/setup.js test/e2e/*.e2e.js",
"test-unit-coverage": "istanbul cover node_modules/mocha/bin/_mocha --report html --require test/setup.js test/**/*Test.js",
"test-watch": "npm test -- --watch",
"lint": "eslint app server common *.js",
"hot-server": "node build/hot-server.js",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.config.production.js --progress --profile --colors",
"build-dev": "cross-env NODE_ENV=development webpack --config build/webpack.config.development.js --progress --profile --colors",
"start2": "cross-env NODE_ENV=production electron ./",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron ./main.js",
"build-production-assets": "cross-env NODE_ENV=production node build/production-assets.js",
"build-package-current": "npm run build-production-assets && cross-env NODE_ENV=production node node_modules/electron-packager/cli.js target/production hippotomate --out=target/platforms --asar",
"build-package-platform:win32": "cross-env NODE_ENV=production node node_modules/electron-packager/cli.js target/production hippotomate --out=target/platforms --overwrite --asar --platform=win32 --arch=ia32 --icon=app/product/img/product.ico --version-string.CompanyName=Hippotomate --version-string.FileDescription=Hippotomate --version-string.ProductName=\"Hippotomate\"",
"build-package-platform:win64": "cross-env NODE_ENV=production node node_modules/electron-packager/cli.js target/production hippotomate --out=target/platforms --overwrite --asar --platform=win32 --arch=x64 --icon=app/product/img/product.ico --version-string.CompanyName=Hippotomate --version-string.FileDescription=Hippotomate --version-string.ProductName=\"Hippotomate\"",
"build-package-platform:linux": "cross-env NODE_ENV=production node node_modules/electron-packager/cli.js target/production hippotomate --out=target/platforms --overwrite --asar --platform=linux --arch=x64",
"build-package-all": "npm run build-production-assets && npm-run-all build-package-platform:*",
"postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\""
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"author": "Mihai Valentin",
"license": "MIT",
"bugs": {
"url": "https://github.com/MihaiValentin/hippotomate/issues"
},
"devEngines": {
"node": "6.x",
"npm": "3.x"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/MihaiValentin/hippotomate.git"
},
"homepage": "http://www.hippotomate.com",
"devDependencies": {
"eslint": "^3.13.1",
"eslint-plugin-react": "^6.9.0",
"istanbul": "^0.4.5",
"jsdom": "^9.9.1",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"mocha-logger": "^1.0.4",
"nock": "^9.0.2",
"npm-run-all": "^4.0.0",
"phantomjs": "^2.1.7",
"selenium-standalone": "^5.9.0",
"spectron": "^3.4.1"
},
"dependencies": {
"babel-core": "6.21.x",
"babel-loader": "6.2.x",
"babel-preset-es2015": "6.18.x",
"babel-preset-react": "6.16.x",
"concurrently": "^2.0.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"electron": "1.4.13",
"electron-debug": "^1.1.0",
"electron-packager": "^8.3.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.6.0",
"file-loader": "^0.8.5",
"font-awesome": "^4.5.0",
"fs-extra": "^0.26.7",
"lato-font": "^1.1.1",
"lodash": "^4.8.2",
"material-icons": "^0.1.0",
"material-ui": "^0.16.3",
"minimist": "^1.2.0",
"prefix": "^0.2.4",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-json-tree": "^0.6.5",
"react-tap-event-plugin": "^2.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-target-electron-renderer": "^0.4.0"
}
}