forked from halsp/core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
49
50
51
{
"name": "ipare",
"private": true,
"license": "MIT",
"author": "Hal Wang",
"homepage": "https://ipare.org",
"repository": {
"type": "git",
"url": "https://github.com/ipare/ipare"
},
"bugs": {
"url": "https://github.com/ipare/ipare/issues",
"email": "[email protected]"
},
"scripts": {
"prebuild": "sh scripts/copy-package-files.sh",
"build": "lerna run build",
"pretest": "npm run build",
"test": "jest",
"test-q": "npm run prebuild && jest",
"bootstrap": "lerna bootstrap",
"preupdate": "npm run bootstrap && npm run test",
"update": "lerna version --force-publish -m \"chore(release): publish %s\"",
"publish:beta": "npm run test && lerna publish --npm-tag=beta -m \"chore(release): publish %s\"",
"publish:test": "npm run test && lerna publish --npm-tag=test --skip-git -m \"chore(release): publish %s\"",
"lint": "lerna run lint",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"codecov": "^3.8.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lerna": "5.4.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "10.9.1",
"typescript": "^4.7.4"
},
"workspaces": [
"packages/*"
]
}