-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "@blaze/customer-feedback",
"version": "1.0.0",
"description": "Customer feedback tool",
"author": "Gregory Pratt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlazeSoftware/customer-feedback.git"
},
"bugs": {
"url": "https://github.com/BlazeSoftware/customer-feedback/issues"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/customer-feedback/customer-feedback.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"stylelint": "stylelint \"src/**/*.css\"",
"prettier": "prettier --write './**/*'",
"prepare": "husky",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@stencil-community/postcss": "2.2.0",
"@stencil/core": "4.21.0",
"@stencil/store": "2.0.16",
"cssnano": "7.0.6",
"html2canvas": "1.4.1",
"html2canvas-pro": "1.5.8",
"husky": "9.1.6",
"pinst": "3.0.0",
"postcss-nested": "6.2.0",
"prettier": "3.3.3",
"stylelint": "16.9.0",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "36.0.1"
}
}