-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.91 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
49
50
{
"name": "sbweb-dragband",
"version": "0.2.6",
"author": "S. Derdeyn <[email protected]>",
"license": "MIT",
"description": "UI library to create a draggable list bar. Reponsive, scrollable, swipeable",
"homepage": "https://github.com/sigged/sbweb-dragband",
"bugs": "https://github.com/sigged/sbweb-dragband/issues",
"keywords": [
"scroll",
"drag",
"swipe",
"list",
"items",
"responsive",
"mobile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sigged/sbweb-dragband.git"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"build": "npm run build:css && npm run build:js",
"build:css": "npm run build:sass && npm run build:postcss",
"build:sass": "node-sass --source-map true --output-style 'compressed' src/assets/styles/ -o build/css/",
"build:postcss": "trash build/css/*.min.css && postcss build/css/*.css -d build/css/ --ext min.css --config postcss.config.js",
"build:js": "babel src/assets/scripts/ --out-dir build/scripts && uglifyjs --compress --mangle --comments -o build/scripts/dragband.min.js -- build/scripts/dragband.js",
"watch:css": "node-sass --watch --recursive --output-style 'compressed' src/assets/styles/ -o build/css/"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-preset-minify": "^0.4.3",
"cssnano": "^4.1.0",
"doiuse": "^4.1.0",
"express": "^4.16.3",
"node-sass": "^4.9.3",
"postcss": "^7.0.2",
"postcss-cli": "^6.0.0",
"postcss-node-sass": "^2.1.6",
"trash-cli": "^1.4.0",
"uglify-js": "^3.4.9"
}
}