-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.26 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
73
74
75
{
"name": "@shaharmor/webrtc-private-ip",
"version": "0.1.0",
"description": "Get your private-ip using WebRTC",
"keywords": [
"private-ip",
"webrtc"
],
"homepage": "https://github.com/shaharmor/webrtc-private-ip",
"bugs": {
"url": "https://github.com/shaharmor/webrtc-private-ip/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaharmor/webrtc-private-ip.git"
},
"license": "MIT",
"author": {
"name": "Shahar Mor"
},
"files": [
"dist/**/*"
],
"main": "dist/webrtc-private-ip.js",
"types": "dist/webrtc-private-ip.d.ts",
"scripts": {
"build": "webpack",
"clean": "rm -rf ./coverage ./dist",
"lint": "npm run lint:tsc && npm run lint:eslint",
"lint:all": "npm run all -- run lint",
"lint:eslint": "npm run lint:eslint:glob -- '**/*.{js,ts}'",
"lint:eslint:glob": "eslint --max-warnings 0",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"prepublish": "NODE_ENV=production npm run build",
"reformat": "npm run reformat:glob -- '**/*.{js,json,ts}'",
"reformat:glob": "prettier --write",
"test": "karma start",
"test:watch": "npm run test -- '--no-single-run'"
},
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@shaharmor/commitlint-config": "0.0.2",
"@shaharmor/eslint-config": "1.2.2",
"@shaharmor/prettier-config": "1.1.1",
"@shaharmor/tsconfig": "0.1.1",
"@types/chai": "4.2.5",
"@types/mocha": "5.2.7",
"@types/webpack": "4.41.0",
"@types/webpack-dev-server": "3.9.0",
"@types/webrtc": "0.0.25",
"@typescript-eslint/eslint-plugin": "2.8.0",
"chai": "4.2.0",
"eslint": "6.7.2",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-prettier": "3.1.1",
"husky": "3.1.0",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "1.3.0",
"karma-typescript": "4.1.1",
"lint-staged": "9.5.0",
"mocha": "6.2.2",
"prettier": "1.19.1",
"sort-package-json": "1.23.1",
"ts-loader": "6.2.1",
"ts-node": "8.5.4",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-webpack-plugin": "3.2.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0"
}
}