-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "@thadeu/network-informations",
"version": "0.0.5",
"description": "Get the client network informations cross-plataform",
"keywords": [
"network",
"network information",
"network type",
"network wlan lan",
"chrome network type",
"webrtc network type"
],
"author": "Thadeu Esteves Jr",
"main": "dist/network-informations.js",
"module": "src/network-informations.js",
"files": [
"src/**/*",
"dist/**/*",
"README.md"
],
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --progress --mode development --watch-content-base --config webpack.config.dev.js",
"build:minified": "env NODE_ENV=production ./node_modules/.bin/webpack --mode production",
"build:expanded": "./node_modules/.bin/webpack",
"build": "npm run build:minified && npm run build:expanded",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"verbose": false,
"testURL": "http://localhost/",
"setupFiles": [],
"testMatch": [
"<rootDir>/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/__spec__/**/*.{js,jsx,mjs}",
"<rootDir>/test/**/*.{js,jsx,mjs}",
"<rootDir>/spec/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thadeu/network-informations.git"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"jsdom": "^11.10.0",
"puppeteer": "^1.9.0",
"snap-shot": "^2.17.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"bugs": {
"url": "https://github.com/thadeu/network-informations/issues"
},
"homepage": "https://github.com/thadeu/network-informations#readme",
"dependencies": {
"lodash": "^4.17.11"
}
}