-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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": "scaipproxy",
"version": "1.0.4",
"description": "SCAIPProxy Server",
"scripts": {
"clean": "rimraf node_modules build libs .gradle .routr.salt *.dat",
"distro": "./.scripts/distro.sh",
"prepack": "",
"test": "cross-env ./etc/tests/tester2 mod/**/*.unit.test.js",
"test-kt": "gradle test --tests *Test",
"pretest": "npm run bundle && cp -a etc/lib/* libs/",
"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'"
},
"lint-staged": {
"mod/**/*.js": [
"prettier-standard"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"dependencies": {
"deepmerge": "^4.2.2",
"flat": "^5.0.0",
"ip-utils": "^2.4.0",
"moment": "^2.22.2",
"paginate-array": "^2.1.0",
"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",
"lint-staged": "^10.0.9",
"mocha": "^6.2.0",
"npm": "^6.1.0",
"nyc": "^14.1.1",
"prettier-standard": "^9.1.1",
"rewire": "^5.0.0",
"rimraf": "^2.7.1",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"source-map-loader": "^0.2.4",
"typescript": "^4.7.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/fonoster/routr.git"
},
"author": "Pedro Sanders",
"license": "MIT"
}