This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
128 lines (128 loc) · 3.76 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@duetds/date-picker",
"version": "1.4.0",
"description": "Duet Date Picker is an open source version of Duet Design System’s accessible date picker.",
"author": "LocalTapiola Services Ltd <[email protected]>",
"license": "MIT",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"main": "dist/index.cjs.js",
"unpkg": "dist/duet/duet.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"repository": {
"type": "git",
"url": "https://github.com/duetds/date-picker.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"custom-element",
"dist",
"hydrate/index.js",
"hydrate/index.d.ts"
],
"scripts": {
"start": "npm run dev",
"dev": "stencil build --dev --es5 --watch --serve",
"docs": "stencil build --docs-readme",
"build": "stencil build --es5",
"precommit": "stencil test --spec --silent",
"test": "stencil test --spec --e2e --silent",
"test:dev": "stencil test --spec --e2e --watchAll",
"test:unit": "stencil test --spec --silent",
"test:e2e": "stencil test --e2e --silent",
"lint:js": "eslint \"**/*.{js,ts,tsx}\" --cache --quiet",
"lint:sass": "sass-lint -c ./.sasslintrc.json",
"lint:sass:fix": "sass-lint-auto-fix",
"preversion": "npm run lint:js && npm run lint:sass && npm test",
"version": "npm run build",
"postversion": "npm publish",
"postpublish": "git push origin master --tags"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run lint:js && npm run lint:sass"
}
},
"engines": {
"node": ">= 12.17.0",
"npm": ">= 6.14.0"
},
"bugs": {
"email": "[email protected]"
},
"dependencies": {
"@stencil/core": "^2.3.0"
},
"devDependencies": {
"@stencil/sass": "1.3.2",
"@stencil/utils": "latest",
"@types/jest": "26.0.10",
"@types/jest-image-snapshot": "3.1.0",
"@types/puppeteer": "3.0.1",
"@typescript-eslint/eslint-plugin": "2.13.0",
"@typescript-eslint/parser": "2.13.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "4.2.5",
"jest": "26.4.1",
"jest-cli": "26.4.1",
"jest-image-snapshot": "4.1.0",
"prettier": "1.19.1",
"prettier-stylelint": "0.4.2",
"pretty-quick": "^2.0.1",
"puppeteer": "5.2.1",
"sass-lint": "1.13.1",
"sass-lint-auto-fix": "0.21.2",
"typescript": "3.9.7"
},
"sasslintConfig": "./.sasslintrc.json",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"accessibility": "off",
"ecmaVersion": 2018,
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"comma-dangle": [
"error",
"only-multiline"
],
"curly": [
"error",
"all"
],
"no-console": "off",
"no-undef": "off",
"no-var": "off",
"prefer-rest-params": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/ban-ts-ignore": "off"
}
}
}