-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "jquery.smoothscroll",
"version": "3.0.1",
"author": "inc2734",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inc2734/jquery.smoothscroll"
},
"main": "src/jquery.smoothscroll.js",
"keywords": [
"scrollbar",
"scroll",
"smooth scroll"
],
"files": [
"src",
"dist",
"package.json",
"package-lock.json",
"LICENSE",
"README.md",
"webpack.config.js"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"rimraf": "^3.0.2",
"browser-sync": "^2.26.7",
"cpy-cli": "^3.1.1"
},
"scripts": {
"browsersync": "browser-sync start -s 'dist' -f 'dist'",
"cleanup": "rimraf dist && mkdir dist",
"js": "npm run cleanup && webpack src/jquery.smoothscroll.js -o dist/jquery.smoothscroll.min.js --config webpack.config.js",
"build": "npm run js && cpy 'src/index.html' 'dist'"
}
}