-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 KB
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
76
77
78
79
{
"name": "@eove/serial-console-com",
"version": "2.1.2",
"description": "library to communicate with a (unix) console over a serial line",
"bin": "./cli.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"cli.js",
"build"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"tslint": "tslint --fix 'lib/**/*.ts'",
"jest": "jest --verbose",
"testw": "jest --watch",
"coverage": "jest --coverage",
"prettier": "prettier --write '**/*.{js,json,md,ts}'",
"compile": "tsc -p tsconfig.test.json",
"start": "ts-node ./cli.ts",
"test": "run-s -c jest tslint",
"prebuild": "rm -rf ./build",
"build": "tsc",
"preversion": "run-s test compile build",
"postversion": "git push && git push --tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eove/serial-console-com.git"
},
"keywords": [
"serial",
"console"
],
"author": "Peio ROTH <pierreroth64@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eove/serial-console-com/issues"
},
"homepage": "https://github.com/eove/serial-console-com#readme",
"dependencies": {
"@arpinum/promising": "3.1.0",
"commander": "8.1.0",
"debug": "4.1.1",
"lodash": "4.17.21",
"rxjs": "6.5.4",
"serialport": "11.0.1"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/jest": "25.1.3",
"@types/lodash": "4.14.149",
"@types/node": "13.7.4",
"@types/rx": "4.1.1",
"@types/serialport": "8.0.2",
"jest": "25.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"prettier-plugin-organize-imports": "4.1.0",
"ts-jest": "25.2.1",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.8.2"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "/lib/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"js",
"json",
"ts"
]
}
}