-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
51
52
53
54
{
"name": "reactify-observe",
"version": "1.0.0",
"description": "Make element observable in reactify way ʘ‿ʘ",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist/*",
"build": "webpack --config webpack.config.js --progress",
"build:module": "npm run clean && NODE_ENV=build npm run build",
"prepublishOnly": "npm run clean && NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prate3k/reactify-observe.git"
},
"keywords": [
"React",
"Observer",
"Observe Element",
"Observable",
"rxjs",
"reactjs"
"React Observe Element"
],
"author": "Prateek Kathote",
"license": "MIT",
"bugs": {
"url": "https://github.com/prate3k/reactify-observe/issues"
},
"homepage": "https://github.com/prate3k/reactify-observe#readme",
"peerDependencies": {
"react": ">= 16.0.0"
},
"dependencies": {
"react": "16.8.6",
"intersection-observer": "0.7.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "8.0.6",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"prop-types": "15.7.2",
"webpack": "4.32.2",
"webpack-cli": "3.3.2"
}
}