-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 955 Bytes
/
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
{
"name": "auth0-scripts",
"version": "1.0.0",
"private": true,
"description": "Auth0 hooks and rules",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"lint:format": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstandfm/auth0-scripts.git"
},
"author": "Daniël Illouz <[email protected]> (https://www.danillouz.dev/)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/upstandfm/auth0-scripts/issues"
},
"homepage": "https://github.com/upstandfm/auth0-scripts#readme",
"lint-staged": {
"src/**/*.{js,json,md}": "npm run lint:format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"dependencies": {}
}