-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "react-lifecycle-appear",
"version": "1.1.2",
"description": "A React HOC, adding lifecycle methods for handling a component enters or exits the viewport.",
"main": "lib/index.js",
"browser": "browser/index.js",
"scripts": {
"build:node": "BABEL_ENV=node babel src -d ./lib",
"build:browser": "BABEL_ENV=browser babel src -d ./browser",
"clean": "rm -rf ./lib ./browser",
"build": "npm run clean && npm run build:node && npm run build:browser",
"release": "node build/release.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Broltes/react-lifecycle-appear.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"react",
"appear",
"disappear",
"hook",
"HOC"
],
"author": "Broltes <broltes@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Broltes/react-lifecycle-appear/issues"
},
"homepage": "https://github.com/Broltes/react-lifecycle-appear#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@babel/runtime-corejs3": "^7.7.4",
"appear-event": "^0.3.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}