-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
81 lines (81 loc) · 2.73 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
{
"name": "yeoman-app",
"productName": "Yeoman",
"version": "0.0.0",
"appBundleId": "io.yeoman.app",
"helperBundleId": "io.yeoman.app.helper",
"description": "An app made with Electron that scaffolds projects using Yeoman",
"author": "The Yeoman Team",
"main": "src/browser/main.js",
"bugs": "https://github.com/yeoman/yeoman-app/issues",
"dependencies": {
"async": "^1.2.1",
"bootstrap": "^3.3.0",
"color": "^0.8.0",
"electron-compile": "^3.3.6",
"findup-sync": "^0.2.1",
"fix-path": "^1.1.0",
"flux": "^2.0.1",
"fs-plus": "^2.3.1",
"getmac": "^1.0.7",
"jasmine": "2.1.1",
"lodash": "^3.6.0",
"material-ui": "^0.14.4",
"node-uuid": "^1.4.7",
"ps-tree": "^1.0.0",
"q": "^1.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.1",
"react-tap-event-plugin": "0.2.2",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1",
"season": "^5.3.0",
"semver": "^5.1.0",
"underscore-plus": "^1.6.6",
"vm-compatibility-layer": "0.1.0",
"yargs": "^3.15.0",
"yeoman-environment": "^1.5.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"electron-compilers": "^4.0.0",
"electron-packager": "^8.1.0",
"electron-prebuilt": "1.4.2",
"eslint": "^1.10.2",
"eslint-plugin-react": "^3.10.0",
"minimist": "^1.1.1",
"mkdirp": "^0.5.0",
"mocha": "^2.2.5",
"react-addons-test-utils": "^0.14.7",
"rimraf": "^2.3.3",
"sandboxed-module": "^2.0.2",
"sinon": "^1.15.3",
"skin-deep": "^0.15.0"
},
"peerDependencies": {
"node-inspector": "^0.12.5"
},
"scripts": {
"start": "electron . -r",
"test": "scripts/test.js",
"pretest": "npm run lint",
"debug": "electron --debug . -r",
"preinspector": "open http://127.0.0.1:8080/?ws=127.0.0.1:8080&port=5858",
"inspector": "node-inspector",
"lint": "eslint --ext=js --ext=jsx src spec",
"build-cache": "electron-compile --appDir . ./src/ ./static/",
"package": "npm run pack-mac && npm run pack-win && npm run pack-linux",
"pack-mac": "npm run build-cache && electron-packager . --asar --overwrite --platform=darwin --arch=x64 --icon=resources/app.icns --prune=true --out=out",
"pack-win": "npm run build-cache && electron-packager . Yeoman --asar --overwrite --platform=win32 --arch=ia32 --icon=resources/app.ico --prune=true --out=out",
"pack-linux": "npm run build-cache && electron-packager . --asar --overwrite --platform=linux --arch=x64 --icon=resources/png.png --prune=true --out=out"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yeoman/yeoman-app"
}
}