Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit 5e9afba

Browse files
committed
Fix package.json
1 parent cd17c4b commit 5e9afba

4 files changed

Lines changed: 21 additions & 5 deletions

File tree

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ node_js:
1010
- 13
1111
stages:
1212
- lint
13+
addons:
14+
chrome: stable
1315
jobs:
1416
include:
1517
- stage: lint
18+
install: npm run setup
1619
script:
17-
- cd js-backend && npm install && npm run lint && cd ..
18-
- cd vue-ui && npm install && npm run lint && cd ..
20+
- npm run lint

js-backend/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,5 @@
9999
"browserslist": [
100100
"> 1%",
101101
"last 2 versions"
102-
],
103-
"contributors": []
102+
]
104103
}

package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "OWASP-SSO",
3+
"version": "1.0.0",
4+
"author": "JamesCullum (https://github.com/JamesCullum)",
5+
"license": "GPL-3.0-or-later",
6+
"description": "OWASP SSO is a javascript application that allows a secure-by-default self-hosted SSO experience, including phishing-proof two-factor authentication, using state-of-the-art security mechanisms.",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/OWASP/SSO_Project.git",
10+
},
11+
"scripts": {
12+
"setup": "cd js-backend && npm install && cd .. && cd vue-ui && npm install && cd ..",
13+
"lint": "cd js-backend && npm run lint && cd .. && cd vue-ui && npm run lint && cd ..",
14+
},
15+
"contributors": []
16+
}

vue-ui/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,4 @@
131131
"> 1%",
132132
"last 2 versions"
133133
],
134-
"contributors": []
135134
}

0 commit comments

Comments
 (0)