-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.34 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "reactivexcomponent.js",
"version": "6.0.1",
"description": "Javascript reactive client API for XComponent",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test",
"lib": "./lib"
},
"scripts": {
"build": "node scripts/clean.js && tsc",
"watch": "node scripts/clean.js && tsc -w",
"test": "node scripts/test.js --env=jsdom",
"coverage": "node scripts/test.js --env=jsdom --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/config/jest/setup.js"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"<rootDir>/src/**/?(*.)(test).ts?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "<rootDir>/config/jest/typescriptTransform.js",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|ts|tsx)$"
],
"moduleFileExtensions": [
"mjs",
"web.ts",
"ts",
"web.tsx",
"tsx",
"web.js",
"js",
"web.jsx",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/xcomponent/ReactiveXComponent.js.git"
},
"keywords": [
"xcomponent",
"api",
"javascript",
"websocket"
],
"author": "XComponent <[email protected]> (http://www.xcomponent.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/xcomponent/ReactiveXComponent.js/issues"
},
"homepage": "https://github.com/xcomponent/ReactiveXComponent.js",
"dependencies": {
"@types/es6-shim": "^0.31.32",
"@types/jest": "^26.0.0",
"@types/node": "^13.0.0",
"@types/pako": "^1.0.0",
"@types/rx": "^4.1.1",
"@types/xml2js": "0.4.8",
"@types/xmldom": "^0.1.28",
"atob": "^2.0.3",
"log4ts": "^0.4.2",
"pako": "^1.0.3",
"rxjs": "^6.0.0",
"rxjs-compat": "^6",
"uuid": "^7.0.0",
"websocket": "^1.0.25",
"xml2js": "^0.4.17"
},
"devDependencies": {
"clean-webpack-plugin": "^1.0.0",
"compression": "^1.6.2",
"husky": "^6.0.0",
"jest": "^26.0.0",
"jest-cli": "^24.0.0",
"json-loader": "^0.5.4",
"mock-socket": "^9.0.0",
"prettier": "^1.14.0",
"pretty-quick": "^2.0.0",
"source-map-loader": "^0.2.0",
"ts-jest": "^25.0.0",
"ts-loader": "^5.0.0",
"ts-mockito": "^2.3.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.14.0",
"tslint-loader": "^3.6.0",
"tslint-plugin-prettier": "^2.0.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}