-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.32 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vuepress-auth0",
"version": "0.2.5",
"description": "VuePress Auth0 plugin",
"main": "dist/index.js",
"files": [
"dist/*",
"src/*",
"types/*",
"LICENSE"
],
"typings": "types/index.d.ts",
"scripts": {
"build:dev": "cross-env NODE_ENV=development tsc -p tsconfig.json --watch",
"build": "cross-env NODE_ENV=production tsc -p tsconfig.json ",
"test": "echo \"Error: no test specified\"",
"clean": "rimraf dist/*",
"preversion": "npm run clean && npm test",
"version": "npm run build && git add -A",
"postversion": "git push --tags origin master",
"prep:major": "npm version major -m \"build %s\"",
"prep:minor": "npm version minor -m \"build %s\"",
"prep:patch": "npm version patch -m \"build %s\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jawa-the-hutt/vuepress-auth0.git"
},
"keywords": [
"vuepress",
"plugin",
"authentication",
"auth0"
],
"author": "Gary Gambill",
"license": "MIT",
"bugs": {
"url": "https://github.com/jawa-the-hutt/vuepress-auth0/issues"
},
"homepage": "https://github.com/jawa-the-hutt/vuepress-auth0#readme",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@types/auth0-js": "^9.10.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"@vuepress/core": "^1.0.2",
"@vuepress/shared-utils": "^1.0.2",
"@vuepress/theme-default": "^1.0.2",
"babel-eslint": "^10.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.4.3",
"vue-router": "^3.0.7",
"vuepress": "^1.0.2"
},
"dependencies": {
"auth0-js": "^9.11.1",
"urijs": "^1.19.1"
}
}