-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "@phila/vue-sso",
"version": "1.0.0",
"description": "SSO connection and redirect library for a vue app.",
"author": "City Of Philadelphia",
"main": "dist/vue-sso.umd.js",
"module": "dist/vue-sso.esm.js",
"unpkg": "dist/vue-sso.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --config rollup.config.js",
"watch": "rollup --watch --config rollup.config.js"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"conventional-changelog-conventionalcommits": "^4.6.0",
"rollup": "^2.52.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-gzip": "^3.1.0",
"semantic-release": "^17.4.4"
},
"dependencies": {
"@azure/msal-browser": "^3.1.0"
}
}