-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-intersection-visible",
"version": "2.1.0",
"homepage": "https://github.com/AvraamMavridis/react-intersection-visible",
"repository": {
"type": "git",
"url": "https://github.com/AvraamMavridis/react-intersection-visible"
},
"author": "Avraam Mavridis <avr.mav@gmail.com>",
"description": "react intersection visible",
"scripts": {
"start": "styleguidist server",
"build": "styleguidist build",
"release:major": "generate-changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "generate-changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "generate-changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish",
"prepublish": "npm run test && npm run compile",
"compile": "./node_modules/.bin/babel ./src/ --out-dir ./lib/",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"lint": "eslint ./src --fix",
"test": "jest",
"watch": "npm-scripts-watcher",
"example": "webpack-dev-server"
},
"main": "./lib/index.js",
"watch": {
"src/**/*.js": [
"compile"
]
},
"keywords": [
"react",
"visible",
"intersection",
"dom",
"show",
"hide"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.7.4",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.1.18",
"babel-register": "^6.6.0",
"codecov": "^3.0.4",
"enzyme": "^3.5.1",
"enzyme-adapter-react-16": "^1.4.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-avraam": "^1.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.11.1",
"generate-changelog": "^1.7.1",
"jest": "^23.5.0",
"mocha": "^5.2.0",
"raf": "^3.4.0",
"react": "^16.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.4.2",
"react-scripts": "latest",
"react-styleguidist": "^8.0.0",
"react-test-renderer": "^16.4.2"
},
"dependencies": {
"prop-types": "^15.6.1"
}
}