-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.42 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
{
"name": "scrollmap",
"version": "1.7.9",
"description": "A module for testing if an element is visible in the viewport, then triggers callbacks on execution.",
"main": "./dist/scrollmap.js",
"scripts": {
"start": "webpack --progress --colors --watch --open --config ./webpack/webpack.dev.js",
"watch": "./node_modules/.bin/webpack -d --watch --colors",
"build": "yarn babel&&yarn cdn",
"babel": "babel src -d dist",
"cdn": "webpack --config ./webpack/webpack.prod.js",
"dev": "webpack-dev-server ./test/test.js --hot --watch --colors --open --config ./webpack/webpack.dev.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prkirby/scrollmap"
},
"devDependencies": {
"autoprefixer": "^9.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.23.0",
"concurrently": "^3.6.1",
"css-loader": "^1.0.0",
"documentation": "^8.0.2",
"es6-promise": "^4.1.1",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^4.0.2",
"exports-loader": "^0.7.0",
"github-release-cli": "^0.4.1",
"html-loader": "^0.5.1",
"imports-loader": "^0.8.0",
"json-loader": "^0.5.4",
"less": "^3.8.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"path": "^0.12.7",
"postcss-loader": "^2.1.6",
"postcss-smart-import": "^0.7.6",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.3"
},
"babel": {
"presets": [
"latest"
]
},
"keywords": [
"element",
"visible",
"scroll",
"DOM",
"viewport",
"viewable",
"animation"
],
"author": "Ben Obee",
"license": "ISC",
"dependencies": {}
}