-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 KB
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
{
"name": "toggle-transition",
"version": "2.0.0",
"description": "Tiny vanilla JavaScript plugin enables you to show/hide/toggle DOM Element taking advantage of CSS transitions and without worrying about details.",
"main": "toggleTransition.js",
"scripts": {
"build": "make build",
"test": "jest",
"docs": "jsdoc -c ./jsdocs.config.js",
"todo": "leasot -x --reporter markdown '**/*.js' --ignore 'node_modules/**/*.js' > TODOs.md",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/denisaleman/toggleTransition.git"
},
"keywords": [
"toggle",
"show",
"hide",
"transitionEnd",
"ontransitionend",
"dom-manipulation",
"transitions",
"css",
"dom-element",
"vanilla",
"javascript"
],
"files": [
"toggleTransition.js",
"toggleTransition.min.js"
],
"author": "Denis Alemán",
"license": "MIT",
"bugs": {
"url": "https://github.com/denisaleman/toggleTransition/issues"
},
"homepage": "https://github.com/denisaleman/toggleTransition#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"leasot": "^12.0.0",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"puppeteer": "^13.0.0",
"semantic-release": "^18.0.1",
"uglify-js": "^3.14.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}