-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.26 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
{
"author": {
"name": "Alexander Griffioen",
"email": "[email protected]",
"url": "https://github.com/oscaralexander"
},
"bugs": {
"url": "https://github.com/thenextweb/jquery-tnw-scroll/issues"
},
"dependencies": {
"jquery": "^3.2.1"
},
"description": "jQuery plugin for capturing scroll events.",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.2.0",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"npx": "^9.7.1"
},
"homepage": "https://design.thenextweb.com",
"keywords": [
"es6",
"jquery",
"jquery-plugin",
"plugin",
"scroll",
"scrolling"
],
"license": "MIT",
"main": "./dist/jquery.tnw-scroll.js",
"name": "jquery-tnw-scroll",
"repository": {
"type": "git",
"url": "https://github.com/thenextweb/jquery-tnw-scroll.git"
},
"scripts": {
"build": "npx babel ./src/jquery.tnw-scroll.js --out-file ./dist/jquery.tnw-scroll.js",
"build --production": "BABEL_ENV=production npm run build",
"lint": "eslint src"
},
"version": "1.0.3"
}