-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "root",
"version": "1.0.2",
"description": "Mudita libs",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudita/mudita-libs"
},
"keywords": [
"libs",
"monorepo"
],
"author": "mudita",
"license": "MIT",
"bugs": {
"url": "https://github.com/mudita/mudita-libs/issues"
},
"homepage": "https://github.com/mudita/mudita-libs#readme",
"private": true,
"engines": {
"node": "12.18.3",
"npm": "6.14.6"
},
"scripts": {
"format": "prettier --write 'packages/**/*.{ts,tsx,js,jsx,json,md}'",
"bootstrap": "lerna bootstrap --hoist",
"lint": "lerna run lint",
"test": "lerna run test",
"build": "lerna run build",
"prepublish": "npm run build",
"publish": "lerna publish"
},
"devDependencies": {
"@mudita/eslint-config": "^1.0.6",
"@types/jest": "^26.0.13",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}