forked from FullHuman/purgecss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.96 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
58
59
60
{
"name": "root",
"private": true,
"workspaces": [
"packages/gulp-purgecss",
"packages/postcss-purgecss",
"packages/purgecss",
"packages/purgecss-from-html",
"packages/purgecss-from-jsx",
"packages/purgecss-from-pug",
"packages/purgecss-from-tsx",
"packages/purgecss-webpack-plugin",
"packages/purgecss-with-wordpress",
"packages/vue-cli-plugin-purgecss"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.15.3",
"@microsoft/api-extractor": "^7.31.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vuepress/plugin-search": "^2.0.0-beta.29",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.4.1",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^8.0.1",
"jest": "^27.4.4",
"lerna": "^6.1.0",
"lint-staged": "^13.0.0",
"prettier": "^2.5.1",
"rollup": "^2.61.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.1",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.9.4",
"vuepress": "^2.0.0-beta.48"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"generate-api-reference": "api-documenter markdown -i ./docs/.vuepress/.temp/api-reference/ -o ./docs/api-reference/",
"generate-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"lint": "eslint . --ext .ts --ignore-path .gitignore --fix",
"postinstall": "npm run bootstrap",
"prettier": "prettier --write --parser typescript '**/*.ts'",
"test": "lerna run test",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}