forked from dolphin-wood/smooth-scrollbar
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.33 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
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
{
"name": "smooth-scrollbar",
"version": "7.4.1",
"description": "Customize scrollbar in modern browsers with smooth scrolling experience.",
"main": "dist/smooth-scrollbar.js",
"style": "dist/smooth-scrollbar.css",
"scripts": {
"lint": "eslint .",
"clean:build": "rimraf ./build",
"clean:compile": "rimraf ./lib",
"clean:dist": "rimraf ./dist",
"precompile": "npm run clean:compile",
"compile": "babel ./src --out-dir ./lib",
"postcompile": "node ./helpers/post-compile.js",
"predist": "npm run clean:dist",
"dist": "webpack --config ./webpack.config.prod.js --display-error-details --color",
"postdist": "npm run compile",
"preghpages": "npm run clean:build",
"ghpages": "webpack --config ./webpack.config.ghpages.js --display-error-details --color",
"start": "node serve.js",
"pretest": "npm run lint",
"test": "webpack --config ./webpack.config.test.js --display-error-details --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idiotWu/smooth-scrollbar.git"
},
"keywords": [
"scrollbar",
"customize",
"acceleration",
"performance"
],
"author": "Dolphin Wood <dolphin.w.e@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/idiotWu/smooth-scrollbar/issues"
},
"homepage": "https://github.com/idiotWu/smooth-scrollbar#readme",
"dependencies": {
"babel-runtime": "^6.9.2"
},
"files": [
"src/",
"lib/",
"dist/"
],
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.4.1",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"glob": "^7.0.5",
"ip": "^1.1.3",
"postcss-loader": "^0.9.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}