-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
54 lines (54 loc) · 1.91 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
52
53
54
{
"name": "vivliostyle",
"description": "Library for HTML+CSS typesetting and rich paged viewing with EPUB/Web publications support",
"author": "Vivliostyle Foundation",
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"build": "lerna run build",
"build-dev": "lerna run build-dev",
"clean": "lerna run clean",
"dev": "lerna run dev --parallel --ignore @vivliostyle/react",
"dev:react": "lerna run dev --parallel --ignore @vivliostyle/viewer",
"format": "lerna run format",
"lint": "lerna run lint",
"now-build": "yarn bootstrap && VIVLIOSTYLE_VERSION=canary yarn build && ./scripts/create-archive.js vivliostyle-canary vivliostyle-viewer-canary.zip",
"ship": "lerna publish from-package",
"ship:canary": "lerna publish --canary",
"ship:prerelease": "yarn ship --dist-tag next",
"test": "lerna run test --parallel",
"test-sauce": "lerna run test-sauce",
"version:amend": "git tag --points-at HEAD | xargs -I{} git tag --delete {} && git reset --hard HEAD^",
"version:bump": "lerna version --conventional-commits --preid pre",
"version:graduate": "lerna version --conventional-commits --conventional-graduate",
"version:prerelease": "lerna version --conventional-commits --conventional-prerelease --preid pre"
},
"devDependencies": {
"archiver": "^5.0.2",
"doctoc": "^2.0.0",
"github-release-cli": "^2.0.0",
"husky": "^4.2.3",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"pretty-quick": "^3.0.2",
"shelljs": "^0.8.4",
"shx": "^0.3.2"
},
"husky": {
"hooks": {
"pre-commit": "doctoc README.md CONTRIBUTING.md && git add *.md && pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/vivliostyle/vivliostyle.js.git"
},
"license": "AGPL-3.0",
"engines": {
"node": ">=14"
},
"private": true,
"workspaces": [
"packages/*"
]
}