-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "user-office-lib",
"private": true,
"description": "Duo shared libraries",
"scripts": {
"lint": "tsc --noEmit && eslint ./packages --ext .js,.ts --quiet",
"lint:fix": "tsc --noEmit && eslint ./packages --ext .js,.ts --quiet --fix",
"lerna:build": "lerna run build",
"lerna:clean": "lerna clean --yes",
"lerna:publish": "lerna publish from-package --yes --no-verify-access",
"lerna:test": "lerna run test",
"lerna:prePublish": "npm run clean && npm install && npm run lerna:build",
"clean": "lerna clean --yes && lerna run clean",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"author": "SWAP",
"license": "ISC",
"dependencies": {
"@types/request": "^2.48.8",
"@types/sax": "^1.2.4",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/UserOfficeProject/user-office-lib.git"
},
"engines": {
"npm": ">=8.3.1",
"node": ">=16.14.0"
}
}