-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 791 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 791 Bytes
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
{
"name": "window-scroll-util",
"version": "0.0.1",
"description": "DOM utilities",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "eslint src/**",
"prepublish": "rimraf dist && yarn run lint && yarn run build"
},
"keywords": [
"javascript",
"browser",
"dom"
],
"author": "Shubo Chao",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.7.6",
"babel-loader": "^8.0.6",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.19.1",
"rimraf": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}