-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.39 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
{
"name": "react-network-info",
"version": "1.2.4",
"description": "HoC providing info about the network conditions",
"main": "./lib/index.js",
"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": "NODE_ENV=test jest --config jest.config.js",
"test:watch": "NODE_ENV=test jest --watch --config jest.config.js"
},
"watch": {
"src/**/*.js": [
"compile"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AvraamMavridis/react-network-info.git"
},
"keywords": [
"react",
"network",
"info",
"rtt"
],
"author": "Avraam Mavridis <avraammauridis@gmail.com> (https://www.avraammavridis.com)",
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.2",
"react": "16.5.0",
"react-dom": "16.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^23.4.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.6.0",
"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",
"generate-changelog": "^1.7.1",
"jest": "^23.5.0",
"jest-environment-jsdom": "^23.4.0",
"react-scripts": "latest",
"react-styleguidist": "^8.0.0"
},
"bugs": {
"url": "https://github.com/AvraamMavridis/react-network-info/issues"
},
"homepage": "https://github.com/AvraamMavridis/react-network-info#readme"
}