forked from online-poker/poker-html-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.16 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
113
114
115
116
{
"name": "@poker/html-client",
"version": "0.3.1",
"description": "HTML client for online poker",
"main": "dist/poker-html-client.js",
"scripts": {
"compile": "tsc --project build-tsconfig.json",
"compile:test": "tsc --project tsconfig.json",
"lint": "tslint --project tsconfig.json",
"lint:test": "tslint --project test-tsconfig.json",
"tslint": "tslint",
"configure-ci": "node build/configure-ci.js",
"build": "npm run webpack && npm run lint",
"webpack": "webpack --mode=none",
"test": "jest",
"test:watch": "jest --watch",
"prepack": "npm run build",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/online-poker/poker-html-client.git"
},
"keywords": [
"Poker",
"online",
"client"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/online-poker/poker-html-client/issues"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "test-tsconfig.json"
}
},
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"setupFiles": [
"./tests/jest-setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"^poker/(.*)": "<rootDir>/js/$1",
"^tests/(.*)": "<rootDir>/tests/$1"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
],
"coverageThreshold": {
"global": {
"branches": 36,
"functions": 42,
"lines": 48,
"statements": 48
}
},
"collectCoverage": true
},
"files": [
"dist/poker-html-client.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/online-poker/poker-html-client#readme",
"devDependencies": {
"@types/cordova": "^0.0.34",
"@types/cordova-plugin-camera": "^2.4.0",
"@types/cordova-plugin-device": "^1.1.5",
"@types/cordova-plugin-keyboard": "^0.1.2",
"@types/cordova-plugin-media": "^3.0.0",
"@types/cordova-plugin-network-information": "^1.3.2",
"@types/cordova-plugin-splashscreen": "^4.0.2",
"@types/cordova-plugin-statusbar": "^2.2.2",
"@types/jest": "^22.2.3",
"@types/knockout": "^3.4.54",
"@types/knockout.validation": "0.0.36",
"@types/moment": "^2.13.0",
"@types/signalr": "^2.2.35",
"awesome-typescript-loader": "^5.0.0",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.11",
"jest": "^23.0.1",
"json-loader": "^0.5.7",
"style-loader": "^0.21.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"url-loader": "^1.0.1",
"webpack": "^4.10.1",
"webpack-cli": "^2.1.4"
},
"dependencies": {
"@poker/api-server": "0.1.0-dev.20180406123347",
"@types/applicationinsights-js": "^1.0.5",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"knockout": "^3.4.2",
"knockout.validation": "^2.0.3",
"moment": "^2.22.1",
"signalr": "^2.2.3",
"signals": "^1.0.0"
}
}