This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "intiface-proxy-service",
"version": "0.0.1",
"description": "Proxy service for Buttplug Client/Server connections",
"repository": "https://github.com/intiface/intiface-node-proxy-service",
"author": "Kyle Machulis <[email protected]>",
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "trash dist dist-bundle && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"tslint": "tslint -c tslint.json \"src/**/*.ts\" \"tests/**/*.ts\"",
"tslint:fix": "tslint -c tslint.json --fix semicolon,comma,no-var-keyword,ordered-imports \"src/**/*.ts\" \"tests/**/*.ts\"",
"pretest": "yarn build:main",
"start": "node dist/index.js",
"test": "nyc mocha \"tests/**/*.ts\"",
"posttest": "nyc report && codecov -f coverage/*.json"
},
"dependencies": {
"commander": "^2.19.0",
"express": "^4.16.4",
"selfsigned": "^1.10.4",
"ws": "^6.1.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/commander": "^2.12.2",
"@types/mocha": "^5.2.5",
"@types/noble": "^0.0.38",
"@types/node": "^10.12.18",
"@types/ws": "^6.0.1",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"copyfiles": "^2.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pkg": "^4.3.5",
"trash-cli": "^1.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"yarn": "^1.12.3"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"json",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
}
}