forked from okta/samples-js-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 2.1 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
{
"name": "@okta/samples-js-vue",
"version": "0.1.0",
"description": "Vue Sample Applications for Okta",
"scripts": {
"lint": "npm run --prefix okta-hosted-login/ lint && npm run --prefix custom-login/ lint",
"test": "npm run lint && npm run test:e2e",
"okta-hosted-login-server": "npm start --prefix okta-hosted-login/",
"test:okta-hosted-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor okta-oidc-tck/e2e-tests/okta-hosted-login/conf.js",
"custom-login-server": "npm start --prefix custom-login/",
"test:custom-login": "export TEST_TYPE=implicit || setx TEST_TYPE \"implicit\" && protractor okta-oidc-tck/e2e-tests/custom-login/conf.js",
"preresource-server": "npm run setup-env",
"resource-server": "node samples-nodejs-express-4/resource-server/server.js",
"test:e2e": "npm run test:okta-hosted-login && npm run test:custom-login",
"pretest": "./scripts/update-se-drivers.sh && 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 --allow-root",
"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"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/okta/samples-js-vue.git"
},
"bugs": "https://github.com/okta/samples-js-vue/issues",
"homepage": "https://github.com/okta/samples-js-vue",
"devDependencies": {
"dotenv": "^5.0.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-vue": "^4.2.0",
"find-process": "^1.1.0",
"forever-monitor": "^1.7.1",
"jasmine-reporters": "^2.2.0",
"platform": "^1.3.5",
"protractor": "^5.4",
"wait-on": "^2.0.2"
},
"bin": {},
"private": true
}