forked from nbenbarak-okta/okta.github.io-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.74 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
{
"name": "@okta/okta.github.io",
"version": "0.0.4",
"publishConfig": {
"registry": "https://artifacts.aue1d.saasure.com/artifactory/api/npm/npm-okta"
},
"description": "NPM dependencies for testing and building developer.okta.com",
"files": [
"dist"
],
"scripts": {
"clean": "node scripts/clean",
"build-prod": "npm run clean && cross-env JEKYLL_ENV=production bundle exec jekyll build --verbose && rsync -av ./dist/ ./",
"start": "npm run clean && cross-env JEKYLL_ENV=production bundle exec jekyll serve --incremental",
"stop": "if-env CI=true && exit 0 || (pkill -f clean && kill $(lsof -t -i:4000; lsof -t -i:4444))",
"test-only": "protractor tests/selenium/conf.js",
"pretest": "npm start & wait-on http://localhost:4000 && webdriver-manager update --gecko false",
"test": "npm run test-only || (npm stop && exit 1)",
"posttest": "npm stop",
"import-external": "node scripts/import-external 2>&1",
"find-missing-slashes": "node scripts/find-missing-slashes",
"post-build-lint": "bash scripts/post-build-lint.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okta/okta.github.io.git"
},
"author": "Joel Franusic <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/okta/okta.github.io/issues"
},
"homepage": "https://github.com/okta/okta.github.io#readme",
"devDependencies": {
"@okta/okta-auth-js": "1.8.0",
"@okta/okta-signin-widget": "1.11.0",
"chalk": "^1.1.3",
"cross-env": "^5.0.1",
"if-env": "^1.0.0",
"jasmine-reporters": "^2.2.0",
"jasmine-spec-reporter": "^4.1.0",
"protractor": "^5.1.0",
"recursive-readdir": "^2.2.1",
"remove": "^0.1.5",
"wait-on": "^2.0.2"
}
}