forked from diafygi/webrtc-ips
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.75 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
{
"name": "webrtc-ips",
"version": "0.2.0",
"description": "Get local IP address via WebRTC in the browser environment",
"repository": {
"type": "git",
"url": "git://github.com/vitalets/webrtc-ips.git"
},
"scripts": {
"code": "eslint src test",
"dev": "npm run build -- --watch",
"test": "karma start",
"test-sauce": "karma start karma-sauce.conf.js",
"build": "webpack",
"build:prod": "webpack --mode=production",
"build:demo": "npm run build && cp -f dist/bundle.dev.js demo/ && cp -f dist/bundle.dev.js.map demo/",
"ci": "run-s code test-sauce",
"prerelease": "run-s code test build:prod",
"release": "npm version $VER && npm publish && git push --follow-tags --no-verify",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release",
"precommit": "lint-staged",
"prepush": "run-s code test"
},
"lint-staged": {
"{src,test}/**/*.js": "eslint"
},
"main": "dist/bundle.prod.js",
"dependencies": {
"promise-controller": "^0.3.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-plugin-mocha": "^5.1.0",
"husky": "^0.14.3",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-webpack": "^3.0.0",
"lint-staged": "^6.1.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"regenerator": "^0.13.2",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"keywords": [
"webrtc",
"ip"
],
"license": "MIT"
}