-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "@cloudfour/transition-hidden-element",
"version": "2.0.2",
"description": "A JavaScript utility to help you use CSS transitions when showing and hiding elements with the `hidden` attribute.",
"main": "src/index.js",
"devDependencies": {
"@cloudfour/eslint-plugin": "23.0.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.3.0",
"browser-sync": "3.0.3",
"cypress": "13.16.0",
"eslint": "8.57.1",
"eslint-plugin-jest": "27.9.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-copy": "4.0.1",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"rollup": "4.27.4",
"stylelint": "^15.10.2",
"stylelint-config-cloudfour-suit": "9.0.0"
},
"scripts": {
"start": "npx gulp",
"test": "cypress open",
"lint": "run-s lint:js lint:prettier",
"lint:check": "run-s lint:*:check",
"lint:js": "eslint --fix .",
"lint:js:check": "eslint .",
"lint:prettier": "prettier --write '**/*.js' --ignore-path .gitignore",
"lint:prettier:check": "prettier --check '**/*.js' --ignore-path .gitignore"
},
"eslintConfig": {
"extends": "plugin:@cloudfour/recommended"
},
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudfour/transition-hidden-element.git"
},
"keywords": [
"transition",
"visibility",
"hidden",
"a11y",
"animation",
"css"
],
"author": "Cloud Four",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudfour/transition-hidden-element/issues"
},
"homepage": "https://github.com/cloudfour/transition-hidden-element#readme"
}