-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.37 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
{
"name": "javascript_animations",
"version": "0.8.0",
"description": "Explore multiple animations and its differences, in this case we will be focus on JavaScript approach",
"main": "index.js",
"engines": {
"node": "6.1.x",
"npm": "3.8.x"
},
"scripts": {
"scaffolding": "npm run test-structure && npm run move-assets:dev",
"scaffolding:prod": "npm run test-structure && npm run move-assets:prod",
"test-structure": "babel-node --presets es2015 scripts/test-folders",
"move-assets:dev": "babel-node --presets es2015 scripts/move-assets",
"move-assets:prod": "babel-node --presets es2015 scripts/move-assets --env=production",
"watch": "npm run build:dev && babel-node --presets es2015 ./node_modules/gulp/bin/gulp.js watch --reload=true",
"build:dev": "npm run scaffolding && babel-node --presets es2015 ./node_modules/gulp/bin/gulp.js build --env=development",
"build:prod": "npm run scaffolding:prod && babel-node --presets es2015 ./node_modules/gulp/bin/gulp.js build --env=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tequila-js/javascript_animations.git"
},
"keywords": [
"JavaScript",
"animations",
"CSS3",
"requestFrameAnimation"
],
"author": "",
"license": "MIT ",
"bugs": {
"url": "https://github.com/Tequila-js/javascript_animations/issues"
},
"homepage": "https://github.com/Tequila-js/javascript_animations#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.23.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"connect": "^3.6.2",
"eslint": "^3.19.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-html-minifier": "^0.1.8",
"gulp-if": "^2.0.2",
"gulp-inject": "^4.2.0",
"gulp-livereload": "^3.8.1",
"gulp-minify-css": "^1.2.4",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-webpack": "^1.5.0",
"open": "0.0.5",
"serve-static": "^1.12.3"
},
"dependencies": {
"animejs": "^2.0.2",
"gulp-sourcemaps": "^2.6.0",
"jquery": "^3.2.1",
"reveal": "0.0.4",
"webpack": "1.15.0",
"yargs": "^8.0.1"
}
}