-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
55
56
57
{
"name": "merge-cells",
"version": "0.2.1",
"main": "dist/merge-cells.js",
"files": [
"dist"
],
"author": "Soichi Takamura <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/piglovesyou/merge-cells/issues"
},
"homepage": "https://github.com/piglovesyou/merge-cells#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/pug": "^2.0.10",
"gh-pages": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"make-dir": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"pug": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"printWidth": 120
},
"lint-staged": {
"*.{js,ts,json,md,yml,yaml}": [
"prettier --write"
]
},
"scripts": {
"prepare": "husky install",
"clean": "rm -rf dist",
"lint": "prettier --check .",
"fix": "prettier --write .",
"build:gh-pages": "ts-node ./scripts/gen-gh-pages-html.ts",
"build:dist": "tsc --project tsconfig.dist.json",
"build": "npm-run-all clean --parallel build:*",
"test": "jest",
"gh-pages": "gh-pages -d dist",
"preversion": "npm-run-all lint test build",
"postversion": "git push --tags && yarn publish . --tag $npm_package_version --tag latest && yarn gh-pages"
}
}