forked from dollarshaveclub/stickybits
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
108 lines (108 loc) · 3.95 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
{
"name": "stickybits",
"version": "3.7.11",
"description": "Stickybits is a lightweight alternative to `position: sticky` polyfills",
"main": "dist/stickybits.js",
"module": "dist/stickybits.es.js",
"unpkg": "dist/stickybits.min.js",
"types": "types/index.d.ts",
"scripts": {
"build": "npm run test:unit && npm run build:rollup",
"build:rollup": "rollup --config configs/rollup.config.js",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"chore:delete-changelog-branch": "if git show-ref --quiet refs/heads/chore-changelog; then git branch -D chore-changelog; fi",
"chore:branch": "git checkout -b chore-changelog",
"chore:changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0",
"chore:setup-next-work": "git checkout master && npm run chore:delete-changelog-branch",
"chore:pr": "git add . && git commit -m '[chore] updates changelog' --no-verify && git push origin chore-changelog -f",
"chore:setup-changelog": "git checkout master && git pull",
"chore": "npm run chore:delete-changelog-branch && npm run chore:branch && npm run chore:changelog && npm run chore:pr && npm run chore:setup-next-work",
"grammar": "write-good *.md --no-passive",
"markdownlint": "markdownlint *.md",
"prepush": "npm run build && npm test",
"pre-commit-msg": "Echo 'Running pre-commit checks...' && exit 0",
"postpublish": "git tag $npm_package_version && git push origin --tags && npm run chore",
"release": "npm run lint && npm run build && npm test && npm run report:coverage",
"report:coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"spelling": "mdspell '**/*.md' '!**/node_modules/**/*.md' --ignore-numbers",
"spelling:ci": "mdspell '**/*.md' '!**/node_modules/**/*.md' --ignore-numbers --report",
"start": "npm i",
"test:es-check": "es-check es5 dist/stickybits.min.js dist/stickybits.js dist/jquery.stickybits.js dist/jquery.stickybits.min.js dist/umbrella.stickybits.js dist/umbrella.stickybits.min.js",
"test:unit": "jest --coverage",
"test:acceptance": "node-qunit-puppeteer ./tests/acceptance/index.html 30000 '--no-sandbox'",
"test": "npm run markdownlint && npm run test:unit && npm run test:acceptance"
},
"jest": {
"testRegex": "./tests/unit/.*.js$",
"testURL": "http://localhost/"
},
"bugs": {
"url": "https://github.com/yowainwright/stickybits/issues"
},
"homepage": "https://github.com/yowainwright/stickybits#readme",
"repository": {
"url": "https://github.com/yowainwright/stickybits.git",
"type": "git"
},
"author": "Jeff Wainwright <[email protected]> (https://jeffry.in)",
"license": "MIT",
"files": [
"dist",
"types",
"src"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.4.0",
"codecov": "^3.0.2",
"conventional-changelog-cli": "^2.0.11",
"es-check": "^7.0.0",
"eslint": "^8.0.1",
"eslint-config-dollarshaveclub": "^3.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "8.0.3",
"jest": "^26.0.1",
"jquery": "^3.2.1",
"markdown-spellcheck": "^1.3.1",
"markdownlint-cli": "^0.31.0",
"node-qunit-puppeteer": "^2.0.3",
"nyc": "^15.0.0",
"qunit": "^2.6.1",
"rollup": "1.32.1",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.0",
"write-good": "^1.0.0"
},
"keywords": [
"stick",
"fixed",
"sticky",
"position",
"navigation",
"nav",
"dom",
"simple",
"javascript",
"stuck",
"waypoint",
"scroll",
"stickyheader",
"stickynavigation",
"fixedheader"
],
"browserslist": [
"defaults",
"ie >= 9"
],
"resolutions": {
"ansi-regex": "5.0.1",
"lodash": "4.17.20"
}
}