-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.54 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
{
"name": "typoscript-webpack-plugin",
"version": "1.2.11",
"description": "⛔️ DEPRECATED: A simple plugin to generate typoscript statements to include generated assets",
"main": "index.js",
"files": [
"loading"
],
"scripts": {
"test": "webpack --config dev/webpack.config.js && node ./dev/insert-template.js",
"test:watch": "cross-env WATCH_MODE=on npm run test",
"lint": "eslint --ignore-path .gitignore --ignore-pattern *.min.js .",
"lint:fix": "npm run lint -- --fix .",
"lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m2sd/typoscript-webpack-plugin.git"
},
"keywords": [
"typo3",
"typoscript",
"webpack",
"webpack-plugin",
"deprecated"
],
"author": "Michael Marcenich <info@m-squared-solutions.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/m2sd/typoscript-webpack-plugin/issues"
},
"homepage": "https://github.com/m2sd/typoscript-webpack-plugin#readme",
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.0.0"
},
"dependencies": {
"deepmerge": "^4.0.0",
"just-pick": "^2.1.0"
},
"peerDependencies": {
"webpack": "^4.39.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"file-loader": "^4.2.0",
"husky": "^3.0.3",
"mini-css-extract-plugin": "^0.8.0",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.6",
"webpack-manifest-plugin": "^2.0.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:check && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}