-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.48 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
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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "flooper",
"version": "1.0.2",
"description": "Flex order looper. Uses flex order attribute to loop a list of items instead of duplication or expensive multiItem position calculations.",
"main": "dist/flooper.js",
"module": "lib/index.js",
"scripts": {
"start": "gulp",
"start:production": "gulp --env production",
"build:production": "gulp build --env production",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:site": "gulp deploy --env production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whitesmith/flooper.git"
},
"keywords": [
"Flex",
"Order",
"Looper",
"marquee"
],
"author": "Whitesmith <info@whitesmith.co> (http://whitesmith.co/)",
"contributors": [
"Tomás Marques <tomasmcm@whitesmith.co> (http://tomasmcm.design/)",
"Renato de Leão <renatodeleao@whitesmith.co> (http://renatodeleao.com/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/whitesmith/flooper/issues"
},
"homepage": "https://github.com/whitesmith/flooper#readme",
"devDependencies": {
"animejs": "^2.2.0",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.20",
"browser-sync": "^2.9.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.9.3",
"del": "^3.0.0",
"gh-pages": "^1.1.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.1",
"gulp-clean-css": "^3.9.0",
"gulp-data": "^1.2.0",
"gulp-jade": "^1.1.0",
"gulp-json-editor": "^2.2.1",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"gulp-size": "^2.1.0",
"gulp-uglify": "^1.4.0",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"mappy-breakpoints": "^0.2.3",
"minimist": "^1.2.0",
"node-libs-browser": "^0.5.2",
"normalize.css": "^7.0.0",
"run-sequence": "^1.1.2",
"scrollama": "^0.6.1",
"webpack": "^1.12.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"workerbench.coffee": "https://github.com/phenomnomnominal/workerbench.coffee"
},
"flooper": {
"devPaths": {
"lib": {
"src": "./lib",
"dest": "./dist"
},
"site": {
"src": "./site",
"dest": "./public",
"destName": "public"
}
},
"browserSupport": "IE 10+, Modern Browsers",
"size": {
"minified": "7.83 kB",
"gzip": "2.78 kB"
}
}
}