-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 KB
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
{
"name": "localstorage-cache-api",
"version": "0.0.6",
"description": "Use LocalStorage as Cache when read an external service or API",
"main": "src/localStorage-cache-api.js",
"scripts": {
"eslint": "eslint js",
"jest": "jest",
"test": "eslint js && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/dientuki/localstorage-cache-api"
},
"keywords": [
"localstorage",
"api",
"cache",
"services"
],
"author": "Juan Farias",
"license": "ISC",
"bugs": {
"url": "https://github.com/dientuki/localstorage-cache-api/issues"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"eslint": "^5.16.0",
"jest": "^24.8.0"
},
"babel": {
"presets": [
"@babel/preset-env",
{
"modules": false
}
]
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html"
],
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/js/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"notify": true,
"verbose": true
}
}