This repository was archived by the owner on Apr 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) Β· 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) Β· 1.39 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
{
"name": "fluffy.js",
"version": "2.1.1",
"description": "A simple, light and flexible JavaScript library that makes your content β no matter how big it is β fit in any screen!",
"main": "dist/fluffy.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mzdr/fluffy.js.git"
},
"dependencies": {},
"engines": {},
"keywords": [
"ui",
"scrolling",
"content",
"js",
"css3",
"simple",
"light",
"flexible",
"library",
"vanillajs"
],
"author": "Sebastian Prein <hi@sebastianprein.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mzdr/fluffy.js/issues"
},
"homepage": "https://github.com/mzdr/fluffy.js#readme",
"devDependencies": {
"autoprefixer": "^6.4.0",
"node-sass": "^3.8.0",
"postcss-cli": "^2.5.2",
"uglify-js": "^2.7.0"
},
"scripts": {
"build": "npm run sass:build && npm run postcss && npm run js",
"postcss": "postcss --use autoprefixer -o dist/fluffy.min.css dist/fluffy.min.css",
"postcss:watch": "npm run postcss -- --watch",
"sass": "node-sass ./src/fluffy.scss ./dist/fluffy.min.css",
"sass:build": "npm run sass -- --output-style compressed",
"sass:watch": "npm run sass -- --watch",
"js": "uglifyjs src/fluffy.js --compress --mangle --screw-ie8 --comments '/^!/' -o dist/fluffy.min.js",
"watch": "npm run sass:watch | npm run postcss:watch"
}
}