-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.86 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "panoptes",
"version": "1.19.0",
"homepage": "https://itworkedonmymachine.github.io/panoptes/",
"description": "panoptes watches all",
"repository": "https://github.com/itworkedonmymachine/panoptes.git",
"author": "itworkedonmymachine (https://github.com/itworkedonmymachine)",
"contributors": [
"Sanggu Han <[email protected]>",
"Seunghyun Shin <[email protected]>"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"semantic-release": "semantic-release",
"test": "jest test"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/svelte": "^3.0.0",
"babel-jest": "^26.6.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-svelte3": "^3.0.0",
"husky": ">=4",
"jest": "^26.6.3",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^1.4.2",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"semantic-release": "^17.3.0",
"svelte": "^3.0.0",
"svelte-jester": "^1.3.0"
},
"dependencies": {
"sirv-cli": "^1.0.0"
},
"license": "MIT",
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,svelte}": [
"prettier --write",
"eslint --cache --fix",
"jest --bail --findRelatedTests"
],
"*.{css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"docs/CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.svelte$": "svelte-jester"
},
"moduleFileExtensions": [
"js",
"svelte"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}
}