-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.59 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
89
90
91
{
"scripts": {
"clean": "rimraf built",
"typecheck": "tsc --noEmit -p .",
"lint": "tslint -p ./tsconfig.json",
"bundle": "microbundle -f es,umd --tsconfig ./tsconfig.json",
"build": "npm run clean && npm run typecheck && npm run lint && npm run bundle",
"prepack": "npm run build",
"watch": "microbundle watch",
"cra:build": "npm run build && npm link && cd examples/cra/ && pwd && npm run build",
"cra:start": "cd examples/cra/ && pwd && npm run start-for-cypress",
"cra:stop": "cd examples/cra/ && pwd && npm run kill-old-server",
"cypress:run": "echo \"Starting cypress...\" && cypress run",
"test": "npm run cra:build && npm run cra:start && npm run cypress:run && npm run cra:stop",
"test-ci": "npm run cra:build && npm run cra:start && npm run cypress:run",
"prettier": "prettier --config ./.prettierrc --write \"{src,test,bin,lib,config}/**/*.{ts,json,css,html,md}\"",
"publish-package": "np"
},
"devDependencies": {
"@types/react": "^16.9.23",
"cypress": "^3.7.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"microbundle": "^0.11.0",
"np": "^6.2.0",
"prettier": "1.19.1",
"rimraf": "^3.0.2",
"ts": "^0.2.2",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"observe-element-in-viewport": "0.0.15"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"tsc --noEmit -p .",
"tslint --fix",
"prettier --write",
"git add"
],
"*.{json,md,html,css}": [
"prettier --write",
"git add"
],
".circleci/config.yml": [
"prettier --write",
"circleci config validate",
"git add"
]
},
"name": "use-is-in-viewport",
"description": "A react hook to use the IntersectionObserver declaratively in your React app.",
"version": "1.0.9",
"source": "src/index.ts",
"main": "built/index.umd.js",
"module": "built/index.esm.js",
"types": "built/index.d.ts",
"sideEffects": false,
"keywords": [
"react",
"hook",
"intersection observer",
"viewport"
],
"author": "Mudit Ameta <[email protected]>",
"license": "MIT",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeusdeux/use-is-in-viewport.git"
},
"bugs": {
"url": "https://github.com/zeusdeux/use-is-in-viewport/issues"
},
"homepage": "https://github.com/zeusdeux/use-is-in-viewport#readme"
}