forked from rapid7/awsaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.34 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
{
"name": "awsaml",
"version": "2.2.2",
"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"
},
"scripts": {
"electron": "electron electron/electron.js",
"electron-dev": "NODE_ENV=development ELECTRON_START_URL=http://localhost:3000 electron electron/electron.js",
"react-start": "BROWSER=none; NODE_ENV=development react-scripts start",
"react-build": "react-scripts build",
"test": "mocha",
"cover": "rm -Rf coverage/* && istanbul cover _mocha -- -R spec",
"lint": "eslint '*.js' 'electron/**/*.js' 'api/**/*.js' 'src/**/*.js' 'test/**/*.js'",
"report": "coveralls < ./coverage/lcov.info",
"prebuild": "rm -rf dist/ && rm -rf build/",
"build": "export PLATFORM=${PLATFORM:=darwin,linux,win32}; yarn react-build && node packager.js",
"postbuild": "for platform in `echo $PLATFORM | sed 's/,/ /g'`; do export platform=$platform; npm run zip; done",
"zip": "cd dist/Awsaml-${platform}-x64 && zip -q -y -FS -r ../awsaml-v${npm_package_version}-${platform}-x64.zip .",
"show-appcast-checkpoint": "curl --compressed --location --user-agent 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.152 Safari/537.36' 'https://github.com/rapid7/awsaml/releases.atom' | /usr/bin/sed 's|<pubDate>[^<]*</pubDate>||g' | shasum --algorithm 256"
},
"homepage": "./",
"proxy": "http://localhost:2600/",
"main": "electron/electron.js",
"dependencies": {
"aws-sdk": "^2.256.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"ini": "^1.3.5",
"lodash.isplainobject": "^4.0.6",
"mkdirp": "^0.5.1",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-saml": "^0.33.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"uuid": "^3.3.2",
"xmldom": "^0.1.27",
"xpath.js": "^1.1.0"
},
"devDependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-regular": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/react-fontawesome": "^0.0.20",
"axios": "^0.18.0",
"babel-eslint": "^8.2.5",
"bootstrap": "^4.1.1",
"coveralls": "^3.0.1",
"electron": "^6.0.8",
"electron-devtools-installer": "^2.2.4",
"electron-packager": "^14.0.6",
"electron-rebuild": "^1.8.6",
"eslint": "^5.0.1",
"eslint-config-rapid7": "^3.0.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"history": "^4.7.2",
"hoist-non-react-statics": "^2.5.5",
"istanbul": "^0.4.5",
"jquery": "^3.3.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"popper.js": "^1.14.3",
"prismjs": "^1.14.0",
"prop-types": "^15.6.2",
"querystring": "^0.2.0",
"react-clipboard.js": "^2.0.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "^1.1.4",
"reactstrap": "^6.1.0",
"redux": "^4.0.0",
"redux-actions": "^2.4.0",
"redux-thunk": "^2.3.0",
"should": "^13.2.1",
"styled-components": "^3.3.3",
"unchanged": "^1.3.1"
}
}