-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "@krybc/xapi-js-wrapper",
"version": "2.5.0",
"description": "xStation JavaScript wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/krybc/xapi-js-wrapper.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rimraf -rf lib && tsc -p tsconfig.json",
"test": "jest --maxWorkers=1",
"test:coverage": "jest --maxWorkers=1 --coverage",
"test:ci": "jest --maxWorkers=1 --coverage --detectOpenHandles && cat ./coverage/lcov.info | coveralls",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public"
},
"keywords": [],
"author": "Kamil Rybczyński <[email protected]> (http://rybczynski.io)",
"license": "MIT",
"dependencies": {
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.14",
"@types/ws": "^7.2.7",
"babel-jest": "^26.5.2",
"coveralls": "^3.0.4",
"jest": "^26.5.2",
"jest-extended": "^0.11.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^3.9.7"
},
"bugs": {
"url": "https://github.com/krybc/xapi-js-wrapper/issues"
},
"homepage": "https://github.com/krybc/xapi-js-wrapper#readme"
}