-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "@ramseyinhouse/feedback-component",
"description": "A native web component for collecting quick user feedback.",
"version": "1.0.3",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"license": "GPL-3.0",
"author": "Ramsey Solutions",
"contributors": [
"Alex MacArthur <[email protected]> (https://ramseyinhouse.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/ramseyinhouse/feedback-component"
},
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "eslint ./src",
"test": "cypress run --browser chrome --headless",
"cypress:open": "cypress open"
},
"devDependencies": {
"@ramseyinhouse/eslint-config": "^1.0.4",
"@ramseyinhouse/stylelint-config": "^2.0.0",
"cypress": "^11.1.0",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"stylelint": "^14.15.0",
"terser": "5.15.1",
"vite": "3.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(dist/*).{js,css,json,md}": "prettier ./src --write",
"!(dist/*).js": "eslint --fix"
}
}