This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
forked from auth0/repo-supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.77 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
{
"name": "repo-supervisor",
"version": "1.1.4",
"description": "Scan your code for security misconfigurations, search for passwords and secrets.",
"main": "src/index.js",
"scripts": {
"build": "webpack --config config/webpack.js",
"cli": "node dist/cli.js",
"deploy": "npm run build && ./bin/wt create --name \"${WT_NAME:-repo-supervisor}\" --parse-body --secret GITHUB_TOKEN=\"$GITHUB_TOKEN\" --secret JWT_SECRET=\"$JWT_SECRET\" -p \"${WT_PROFILE:-default}\" --meta wt-node-dependencies=$(./bin/get.wt.deps.sh) dist/webtask.js",
"lint": "eslint src/ config/ --quiet",
"logs": "./bin/wt logs",
"start": "./bin/wt serve --parse-body --port ${PORT:-7070} --hostname ${HOST:-localhost} --secret GITHUB_TOKEN=$GITHUB_TOKEN --secret JWT_SECRET=$JWT_SECRET dist/webtask.js",
"test": "npm run build && npm run lint && mocha",
"validate": "npm run lint && npm outdated --depth 0",
"watch": "./bin/webpack --config config/webpack.js --watch --bail --display-error-details"
},
"author": "radekk",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"json-loader": "^0.5.4",
"mocha": "^3.3.0",
"webpack": "^2.5.1",
"webpack-node-externals": "^1.6.0",
"wt-cli": "^6.1.0"
},
"dependencies": {
"acorn": "^5.1.1",
"bluebird": "^3.5.0",
"github": "^9.2.0",
"handlebars": "^4.0.10",
"handlebars-loader": "^1.5.0",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"optionalDependencies": {
"fsevents": "*"
}
}