-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "direction-reveal",
"description": "A plugin that detects the direction a user enters or leaves an element allowing you to reveal or hide content based on this direction.",
"version": "2.0.2",
"main": "src/scripts/direction-reveal-umd.js",
"esnext": "src/scripts/direction-reveal.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NigelOToole/direction-reveal.git"
},
"bugs": {
"url": "https://github.com/NigelOToole/direction-reveal/issues"
},
"homepage": "https://github.com/NigelOToole/direction-reveal#readme",
"author": "Nigel O Toole <[email protected]> (http://www.purestructure.com)",
"license": "MIT",
"keywords": [
"javascript",
"es6",
"module",
"sass",
"css",
"reveal",
"hover",
"gallery",
"grid"
],
"engines": {
"node": ">=4"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.4.4",
"browser-sync": "^2.26.7",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.2.1",
"gulp-load-plugins": "^1.6.0",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.2.0"
},
"scripts": {
"start": "gulp serve",
"build": "gulp"
}
}