-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.39 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
{
"name": "dataaccessgateway",
"version": "0.0.57",
"description": "A simple library that cache in two different levels HTTP requests",
"repository": {
"type": "git",
"url": "https://github.com/MrDesjardins/dataaccessgateway"
},
"bugs": {
"url": "https://github.com/MrDesjardins/dataaccessgateway/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack --config webpack.prod.js --env.production",
"builddev": "webpack --config webpack.dev.js --env.development",
"builddtsc": "node_modules/typescript/bin/tsc",
"test": "node_modules/jest-cli/bin/jest.js",
"testdev": "node_modules/jest-cli/bin/jest.js --watch",
"coverage": "node_modules/jest-cli/bin/jest.js --coverage",
"sendcoverage": "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"analyze": "source-map-explorer dist/index.js"
},
"keywords": [
"data",
"access",
"cache",
"rest",
"api",
"http"
],
"author": {
"name": "Patrick Desjardins",
"email": "mrdesjardins@gmail.com"
},
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"axios": "0.19.2",
"dexie": "^2.0.3"
},
"devDependencies": {
"@types/chrome": "0.0.74",
"@types/dexie": "^1.3.1",
"@types/jest": "^25.2.1",
"@types/node": "^10.17.18",
"axios": "^0.19.2",
"clean-webpack-plugin": "^0.1.19",
"coveralls": "^3.0.11",
"dexie": "^2.0.3",
"jest": "^25.2.7",
"jest-cli": "^25.2.7",
"source-map-explorer": "^1.8.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.4.5",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"jest": {
"setupFiles": [
"./test/setupTests.ts"
],
"globals": {
"__VERSION__": "test"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^test/(.*)$": "<rootDir>/test/$1"
},
"testRegex": "\\.test\\.(js|ts)x?$"
}
}