-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1012 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
{
"name": "iamjs",
"version": "0.1.0",
"description": "Fully featured library to add authorization to your applications with End-to-end typesafety",
"main": "index.js",
"author": "Mohamed Achaq",
"license": "MIT",
"workspaces": [
"packages/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.56.0",
"lerna": "^6.6.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"publish": "lerna publish",
"cleanPkgs": "rm -rf packages/*/dist",
"lint": "eslint --config .eslintrc.json packages",
"lint:fix": "eslint --config .eslintrc.json --fix packages",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check \"**/*.{ts,tsx,json}\""
}
}