This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.5 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
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
79
80
81
82
83
{
"name": "@rocketbase/skeleton-key",
"version": "0.4.5",
"description": "A Client-Side JS Authentication and Authorization Library",
"main": "dist/SkeletonKey.cjs.js",
"module": "dist/SkeletonKey.esm.js",
"unpkg": "dist/SkeletonKey.umd.js",
"types": "dist/SkeletonKey.esm.d.ts",
"since": "2020",
"files": [
"dist",
"*.md"
],
"scripts": {
"build": "rollup --config build/rollup.config.js",
"clean": "rimraf dist temp docs coverage",
"test": "jest",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketbase-io/skeleton-key.git"
},
"keywords": [
"js",
"auth",
"commons-auth"
],
"author": "Rocketbase Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocketbase-io/skeleton-key/issues"
},
"homepage": "https://github.com/rocketbase-io/skeleton-key#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-commonjs": "^18.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.2",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/axios": "^0.14.0",
"@types/fetch-mock": "^7.3.3",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.21",
"@types/urijs": "^1.19.14",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"fetch-mock": "^9.11.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-preset-typescript": "^1.2.0",
"lint-staged": "^10.5.3",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"rollup": "^2.47.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-ts-paths": "^1.0.5",
"semantic-release": "^17.3.3",
"ts-jest": "^26.4.4",
"typescript": "^4.2.4",
"webpack": "^5.15.0",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"axios": "^0.21.1",
"urijs": "^1.19.5"
},
"publishConfig": {
"@rocketbase:registry": "https://registry.npmjs.org/",
"access": "public"
}
}