forked from okta/samples-python-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.49 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
{
"name": "@okta/samples-python-flask",
"version": "0.1.0",
"description": "Python 2 - Flask Sample Applications for Okta",
"author": "Brian Retterer <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/okta/samples-python-flask.git"
},
"bugs": {
"url": "https://github.com/okta/samples-python-flask/issues"
},
"homepage": "https://github.com/okta/samples-python-flask#readme",
"devDependencies": {
"dotenv": "^5.0.1",
"find-process": "^1.1.0",
"forever-monitor": "npm:@umpacken/forever-monitor@^1.6.1",
"node-cmd": "^3.0.0",
"jasmine": "^3.0.0",
"jasmine-reporters": "^2.5",
"platform": "^1.3.5",
"protractor": "^7.0.0",
"wait-on": "^5.3.0"
},
"scripts": {
"test": "npm run test:e2e && npm run test:resource-server",
"test:e2e": "npm run test:okta-hosted-login && npm run test:custom-login",
"okta-hosted-login-server": "cd okta-hosted-login && python main.py",
"test:okta-hosted-login": "protractor okta-oidc-tck/e2e-tests/okta-hosted-login/conf.js",
"custom-login-server": "cd custom-login && python main.py",
"setup-env": "node scripts/setup-env.js",
"test:custom-login": "protractor okta-oidc-tck/e2e-tests/custom-login/conf.js",
"resource-server": "cd resource-server && python main.py",
"test:resource-server": "jasmine okta-oidc-tck/resource-server/specs/okta-resource-server-spec.js",
"pretest": "webdriver-manager update --gecko false"
}
}