-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "recost-persist",
"version": "0.1.1",
"description": "persist application state into localstorage",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"preversion": "npm run test",
"build": "babel src -d lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JWebCoder/recost-persist.git"
},
"keywords": [
"recost",
"persist",
"localstorage",
"react",
"javascript"
],
"author": "João Moura",
"license": "MIT",
"bugs": {
"url": "https://github.com/JWebCoder/recost-persist/issues"
},
"homepage": "https://github.com/JWebCoder/recost-persist#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"assert": "^1.4.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}