This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.84 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@americanexpress/purgecss-loader",
"version": "4.0.0",
"description": "Webpack loader for removing unused CSS",
"main": "loader.js",
"scripts": {
"prepare": "npm test",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint ./ --ignore-path .gitignore --ext .js",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"test:git-history": "commitlint --from origin/main --to HEAD",
"test:unit": "jest",
"posttest": "npm run test:git-history && npm run test:lockfile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/americanexpress/purgecss-loader.git"
},
"keywords": [
"webpack-loader",
"purgecss",
"remove",
"unused",
"css"
],
"jest": {
"testEnvironment": "node",
"preset": "amex-jest-preset",
"coveragePathIgnorePatterns": [
"<rootDir>/commitlint.config.js"
]
},
"author": "Jamie King <jamie.king@aexp.com> (https://github.com/10xLaCroixDrinker)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/americanexpress/purgecss-loader/issues"
},
"homepage": "https://github.com/americanexpress/purgecss-loader#readme",
"dependencies": {
"loader-utils": "^1.4.2",
"purgecss": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^10.0.6",
"@semantic-release/release-notes-generator": "^11.0.7",
"amex-jest-preset": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^8.39.0",
"eslint-config-amex": "^16.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-dom": "^4.0.3",
"husky": "^3.1.0",
"jest": "^29.4.3",
"lockfile-lint": "^4.3.7",
"lodash": "^4.17.5",
"memory-fs": "^0.4.1",
"semantic-release": "^21.1.2",
"style-loader": "^0.21.0",
"webpack": "^4.6.0"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}