-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.95 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
{
"name": "typo3-poi-map",
"version": "1.3.3",
"description": "A Typo3 extensions which adds categorized points of interest with GoogleMaps integration",
"private": true,
"scripts": {
"dev": "webpack --mode development",
"dev:watch": "npm run dev -- --watch",
"build": "webpack --mode production",
"build:analyze": "npm run build -- --env.BUILD_ADDON analyze",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint:commit": "npm run lint:check && npm run lint",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m2sd/typo3-poi-map.git"
},
"keywords": [],
"author": "Michael Marcenich <info@m-squared-solutions.it> (https://m-sqaured-solutions.it)",
"license": "ISC",
"bugs": {
"url": "https://github.com/m2sd/typo3-poi-map/issues"
},
"homepage": "https://github.com/m2sd/typo3-poi-map#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.3",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"snazzy-info-window": "^1.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}