forked from dollarshaveclub/scrolldir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.51 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
{
"name": "scrolldir",
"version": "1.3.0",
"description": "Vertical scroll direction in CSS",
"main": "dist/scrolldir.js",
"unpkg": "dist/scrolldir.min.js",
"scripts": {
"test": "gulp test && npm run test:es-check",
"test:es-check": "es-check es5 dist/scrolldir.auto.js dist/scrolldir.js dist/scrolldir.min.js dist/scrolldir.auto.min.js",
"build": "rollup -c && rollup -c --environment entry:.auto && gulp minify && npm test",
"lint": "eslint src/*.js --fix",
"postpublish": "git tag $npm_package_version && git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/scrolldir.git"
},
"keywords": [
"scroll",
"intent",
"scrollTop",
"position",
"javascript",
"window"
],
"author": "Patrick Fisher <patrick@pwfisher.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/scrolldir.git/issues"
},
"homepage": "https://github.com/dollarshaveclub/scrolldir.git",
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"bower": "^1.7.9",
"es-check": "^2.0.0",
"eslint": "^5.0.0",
"gulp": "^3.9.1",
"gulp-header": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"node-qunit-phantomjs": "^2.0.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"peerDependencies": {
"gulp": "5.x"
}
}