-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.38 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
{
"name": "skripio-component-template",
"version": "2.0.1",
"description": "Template for creating new skripio components",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-test": "webpack --config ./test/webpack.config.js --watch",
"watch-prod": "webpack --config webpack.config.js --watch",
"release-test": "standard-version -a --dry-run",
"build-it": "webpack --config webpack.config.js",
"document-it": "documentation readme ./src/index.js -s=\"Reference\" --markdown-toc-max-depth=3 --sort-order=alpha",
"release-it": "standard-version -a"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmecgroup/skripio-component-template.git"
},
"keywords": [
"1c",
"skripio",
"component",
"template"
],
"author": "Andrey Skripchenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/fmecgroup/skripio-component-template/issues"
},
"homepage": "https://github.com/fmecgroup/skripio-component-template#readme",
"dependencies": {
"@skripio/response-emitter": "^1.0.5"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"documentation": "^13.2.5",
"dotenv-webpack": "^7.1.1",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-inline-script-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"semistandard": "^16.0.1",
"standard-version": "^9.5.0",
"terser-webpack-plugin": "^5.3.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"semistandard": {
"ignore": [
"./dist*"
]
},
"standard-version": {
"scripts": {
"prerelease": "npm run build-it && npm run document-it && git add ./dist/bundle.html && git add ./README.md"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
}
}