-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "hikvision-api",
"version": "0.1.51",
"main": "dist/bundle.js",
"browser": "dist/browser.js",
"typings": "index.d.ts",
"description": "a simple toolkit to connect and control some equipments of hikvision",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "webpack",
"run": "webpack && node dist/bundle.js"
},
"author": "ChenLuo",
"repository": {
"type": "git",
"url": "https://github.com/ChenLuoi/hikvision-api"
},
"bugs": "https://github.com/ChenLuoi/hikvision-api/issues",
"homepage": "https://github.com/ChenLuoi/hikvision-api#readme",
"keywords": [
"typescript",
"hikvision"
],
"dependencies": {
"@types/xml2js": "^0.4.5",
"axios": "^0.20.0",
"threads": "^1.6.3",
"ws": "^7.3.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.7",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^7.8.0",
"jest": "^26.1.0",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/.jest.setup.js"
]
}
}