forked from fonoster/routr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "routr",
"version": "1.0.0-rc6",
"description": "Next-generation SIP Server",
"scripts": {
"pack": "./distro.sh",
"prepack": "npm test",
"test": "cross-env ./etc/tests/tester2 mod/**/*.unit.test.js",
"test-kt": "gradle test --tests *Test",
"pretest": "npm run bundle",
"bundle": "webpack --config webpack.config.js --mode none",
"prebundle": "cross-env ./gradlew build copyRuntimeLibs && npm run transpile && cp node_modules/jvm-npm/src/main/javascript/jvm-npm.js libs",
"transpile": "tsc",
"format": "prettier-standard 'mod/**/*.js'",
"helm-package": "helm package .helm/ -d .charts && helm repo index .charts"
},
"lint-staged": {
"mod/**/*.js": [
"prettier-standard"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"dependencies": {
"bencode": "^2.0.1",
"deepmerge": "^4.2.2",
"flat": "^5.0.0",
"ip-utils": "^2.4.0",
"lint-staged": "^10.0.9",
"moment": "^2.22.2",
"npm": "^6.1.0",
"paginate-array": "^2.1.0",
"phone": "^2.4.20",
"postal": "^2.0.5",
"validator": "^11.0.0",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@types/node": "^13.13.2",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"husky": "^4.2.3",
"jvm-npm": "^0.1.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier-standard": "^9.1.1",
"rewire": "^5.0.0",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"source-map-loader": "^0.2.4",
"webpack": "4.11.1",
"webpack-command": "^0.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/fonoster/routr.git"
},
"author": "Pedro Sanders",
"license": "MIT"
}