forked from rapid7/awsaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.46 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
{
"name": "awsaml",
"version": "1.2.0",
"description": "Periodically refreshes AWS access keys",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rapid7/awsaml.git"
},
"bugs": {
"url": "https://github.com/rapid7/awsaml/issues"
},
"main": "app.js",
"scripts": {
"electron-debug": "electron . --debug",
"electron-start": "electron .",
"local-start": "node local.js",
"prebuild": "rm -rf dist/",
"build": "electron-packager . Awsaml --asar --ignore=node_modules/electron --ignore=test --ignore=dist --out=dist --platform=darwin,linux,win32 --arch=x64 --version=0.37.8 --app-version=${npm_package_version} --app-bundle-id=com.rapid7.awsaml --helper-bundle-id=com.rapid7.awsaml.helper",
"postbuild": "export platform=darwin; npm run zip & export platform=linux; npm run zip & export platform=win32; npm run zip",
"zip": "cd dist/Awsaml-${platform}-x64 && zip -q -FS -r ../awsaml-v${npm_package_version}-${platform}-x64.zip .",
"test": "mocha",
"lint": "eslint *.js views/** lib/** test/**",
"watch": "webpack-dev-server",
"pack": "webpack --progress --colors --config=webpack.config.pack.js"
},
"dependencies": {
"aws-sdk": "2.2.11",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "1.14.1",
"cookie-parser": "1.4.0",
"electron-packager": "^7.0.2",
"electron-prebuilt": "^1.1.2",
"errorhandler": "1.4.2",
"express": "4.13.3",
"express-react-views": "^0.10.0",
"express-session": "1.13.0",
"ini": "1.3.4",
"mkdirp": "^0.5.1",
"morgan": "1.6.1",
"passport": "0.3.0",
"passport-saml": "0.13.0",
"react": "^15.1.0",
"react-dom": "0.14.1",
"xmldom": "0.1.19",
"xpath.js": "1.0.6"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-runtime": "^6.9.0",
"css-loader": "^0.23.1",
"electron-rebuild": "^1.1.4",
"enzyme": "^2.3.0",
"eslint": "^2.10.2",
"eslint-config-rapid7": "^1.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.5.3",
"react-hot-loader": "^1.3.0",
"should": "^8.4.0",
"style-loader": "^0.13.1",
"typings": "^1.0.4",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}