-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.49 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
{
"name": "@gebruederheitz/clicktrigger2",
"version": "2.6.1",
"description": "Turn DOM Elements into triggers that initiate action upon clicking them.",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"private": false,
"scripts": {
"build": "npm-run-all --parallel build:rollup build:styles",
"build:rollup": "rollup -c ./.rollup.config.js",
"build:styles": "gulp",
"lint": "npm-run-all --parallel lint:scripts lint:styles",
"lint:scripts": "eslint src/",
"lint:styles": "stylelint scss/",
"#SKIP#prepublishOnly": "npm run lint && npm run build",
"release": "release-it --only-version",
"start": "sirv demo/ --host",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm-run-all --parallel watch:scripts watch:styles",
"watch:scripts": "rollup -c ./.rollup.config.js -w",
"watch:styles": "gulp watch"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gebruederheitz/clicktrigger2.git"
},
"keywords": [
"accordion"
],
"author": "Andreas Maros <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/gebruederheitz/clicktrigger2/issues"
},
"homepage": "https://github.com/gebruederheitz/clicktrigger2#readme",
"dependencies": {
"@babel/runtime": "^7.14.6",
"core-js": "^3.15.2",
"eventemitter2": "^6.4.4",
"lodash-es": "^4.17.21",
"scroll": "^3.0.0",
"scroll-doc": "^0.2.1",
"uuid": "^8.3.2",
"when-dom-ready": "^1.2.12"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"autoprefixer": "^10.3.1",
"cssnano": "^5.0.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-postcss": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"release-it": "^14.12.4",
"rollup": "^2.53.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.25.0",
"sirv-cli": "^2.0.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0"
}
}