forked from okta/samples-js-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.05 KB
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
{
"name": "@okta/samples-js-angular",
"version": "0.0.3",
"description": "Angular Sample Applications for Okta",
"scripts": {
"lint:okta-hosted-login": "npm run lint --prefix okta-hosted-login/",
"lint:custom-login": "npm run lint --prefix custom-login/",
"lint": "npm run lint:okta-hosted-login && npm run lint:custom-login",
"test": "npm run test:e2e",
"test:e2e": "npm run test:okta-hosted-login && npm run test:custom-login",
"okta-hosted-login-server": "npm start --prefix okta-hosted-login/",
"test:okta-hosted-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor okta-hosted-login/protractor.conf.js",
"custom-login-server": "npm start --prefix custom-login/",
"test:custom-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor custom-login/protractor.conf.js",
"resource-server": "node scripts/startResourceServer.js",
"preresource-server": "npm run setup-env",
"pretest": "node ./scripts/update-se-drivers.js && npm run setup-env",
"pretest-legacy": "npm run webdriver-update-legacy && npm run setup-env",
"postinstall": "npm run install-custom-login && npm run install-okta-hosted-login",
"setup-env": "node scripts/setup-env.js",
"install-custom-login": "cd custom-login && npm install",
"install-okta-hosted-login": "cd okta-hosted-login && npm install",
"webdriver-update-legacy": "webdriver-manager update --versions.standalone=3.141.59 --versions.chrome 2.45 --gecko false"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/okta/samples-js-angular.git"
},
"bugs": "https://github.com/okta/samples-js-angular/issues",
"homepage": "https://github.com/okta/samples-js-angular",
"devDependencies": {
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"find-process": "^1.4.3",
"forever-monitor": "^3.0.2",
"jasmine-reporters": "^2.3.2",
"platform": "^1.3.6",
"protractor": "^7.0",
"wait-on": "^5.2.0"
},
"bin": {},
"dependencies": {},
"private": true
}