forked from VeDicium/auth0-actions-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "@vedicium/auth0-actions-sdk",
"version": "0.1.3",
"description": "Auth0 Actions SDK - Containing pre-defined rules and types regarding Auth0 Actions",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run lint:build && rimraf dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"/src/**/*.ts\" \"test/**/*.ts\"",
"lint": "npm run lint:build --fix",
"lint:build": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeDicium/auth0-actions-sdk.git"
},
"author": "VeDicium B.V.",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/VeDicium/auth0-actions-sdk/issues"
},
"homepage": "https://github.com/VeDicium/auth0-actions-sdk#readme",
"dependencies": {
"auth0": "^2.39.0"
},
"devDependencies": {
"@types/auth0": "^2.34.12",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0"
},
"versionist": {
"publishedAt": "2022-02-06T18:43:51.291Z"
}
}