-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "@mintuz/horizon",
"version": "2.1.0",
"description": "An Intersection Observer wrapper with some smart defaults",
"main": "index.js",
"homepage": "http://github.com/mintuz/horizon/tree/master",
"repository": {
"type": "git",
"url": "git+https://github.com/mintuz/horizon.git"
},
"bugs": {
"url": "https://github.com/mintuz/horizon/issues"
},
"scripts": {
"prettier": "prettier --arrow-parens=always --single-quote --tab-width=4 --print-width=80 \"./src/**/*.js\" \"./test/**/*js\" --write",
"babel": "babel src --out-dir dist --ignore '**/*.test.js'",
"test": "npm run prettier && jest --coverage --no-cache",
"build": "npm run prettier && npm run babel",
"jest": "jest --watch"
},
"jest": {
"testPathIgnorePatterns": [
".node_modules_production"
]
},
"keywords": [
"Intersection",
"Observer",
"Lazy",
"Loading",
"Lazy",
"Load",
"Lazy",
"Scroll",
"Lazy"
],
"author": "Adam Bulmer",
"license": "MIT",
"dependencies": {
"intersection-observer": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.9.1",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jest": "^20.0.4",
"prettier": "^1.10.2"
}
}