-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.2 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
{
"name": "redux-solace",
"version": "0.20.21",
"description": "solace redux middleware wrapper",
"main": "index.js",
"scripts": {
"prebuild": "rimraf build",
"build:es2015": "tsc",
"build:es2015-prod": "tsc -p tsconfig.prod.json",
"build:copy-files": "node ./scripts/copy-files.js",
"build": "npm run prebuild && npm run build:es2015 && npm run build:copy-files",
"build-prod": "npm run prebuild && npm run build:es2015-prod && npm run build:copy-files",
"release": "npm run build-prod && npm publish build --access public",
"test": "node scripts/test/js"
},
"repository": {
"type": "git",
"url": "[email protected]:albertleigh/redux-solace.git"
},
"keywords": [
"redux",
"solace",
"albert"
],
"author": "Wentao Li <[email protected]>",
"license": "MIT",
"dependencies": {
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"solclientjs": "=10.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^10.12.21",
"@types/redux-actions": "^2.3.1",
"fs-extra": "^7.0.1",
"jest": "^24.1.0",
"jest-environment-jsdom": "^24.0.0",
"jest-environment-jsdom-global": "^1.1.0",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.3",
"ts-jest": "^23.10.5",
"typescript": "^3.3.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx,js,jsx,mjs}",
"!src/event/index.ts",
"!src/system/index.ts",
"!src/index.ts"
],
"setupFiles": [],
"testMatch": [
"**/__tests__/**/*.{ts,tsx,js,jsx,mjs}",
"**/?(*.)(spec|test).{ts,tsx,js,jsx,mjs}"
],
"snapshotSerializers": [],
"roots": [
"<rootDir>/src"
],
"globals": {},
"testEnvironment": "jest-environment-jsdom-global",
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {},
"moduleFileExtensions": [
"ts",
"tsx",
"web.js",
"web.ts",
"js",
"json",
"web.tsx",
"web.jsx",
"jsx",
"node",
"mjs"
]
}
}