forked from actorapp/simple-scrollbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.23 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
{
"name": "simple-scrollbar",
"version": "0.2.1",
"description": "Very simple and lightweight vanilla javascript library for creating a custom scrollbar cross-browser",
"main": "lib/simple-scrollbar.js",
"scripts": {
"build:babel": "babel src --out-dir lib --source-maps",
"build:sass": "$(npm bin)/node-sass src/*.scss -o lib --output-style compressed",
"build": "npm run build:babel && npm run build:sass",
"watch:babel": "babel src --out-dir lib --watch --source-maps",
"watch:sass": "$(npm bin)/node-sass src/*.scss -o lib --watch",
"watch": "npm run watch:babel & npm run watch:sass",
"start": "npm run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actorapp/simple-scrollbar.git"
},
"keywords": [
"scrollbar"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/actorapp/simple-scrollbar/issues"
},
"homepage": "https://github.com/actorapp/simple-scrollbar#readme",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-plugin-transform-es2015-modules-umd": "^6.4.3",
"babel-plugin-transform-strict-mode": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"node-sass": "^3.4.2"
}
}