forked from dollarshaveclub/scrolldir
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "scrolldir",
"version": "1.5.3",
"description": "Vertical scroll direction in CSS",
"main": "dist/scrolldir.js",
"module": "dist/scrolldir.es.js",
"unpkg": "dist/scrolldir.min.js",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.mjs",
"lint": "eslint src/*.js --fix",
"prepublishOnly": "yarn build",
"test": "yarn build && yarn test:acceptance && yarn test:es-check",
"test:acceptance": "node ./scripts/run-tests.js",
"test:es-check": "es-check es5 dist/scrolldir.auto.js dist/scrolldir.js dist/scrolldir.min.js dist/scrolldir.auto.min.js",
"update": "codependence --update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yowainwright/scrolldir.git"
},
"keywords": [
"jquery",
"scroll",
"intent",
"scrollTop",
"position",
"javascript",
"window"
],
"author": "Patrick Fisher <[email protected]>, Jeffry Wainwright <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yowainwright/scrolldir.git/issues"
},
"homepage": "https://github.com/yowainwright/scrolldir.git",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.25.4",
"codependence": "^0.2.6",
"es-check": "7.2.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"node-qunit-phantomjs": "2.1.1",
"prettier": "3.3.3",
"qunit": "2.22.0",
"rollup": "4.24.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-uglify": "6.0.4"
},
"prettier": "@heartly/eslint-config/dist/prettier",
"release-it": {
"git": {
"commitMessage": "chore: release v%s"
}
}
}