-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "recost-logger",
"version": "0.1.2",
"description": "logs all the state changes done on recost",
"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-logger.git"
},
"keywords": [
"recost",
"logger",
"state",
"context",
"api",
"react"
],
"author": "João Moura",
"license": "MIT",
"bugs": {
"url": "https://github.com/JWebCoder/recost-logger/issues"
},
"homepage": "https://github.com/JWebCoder/recost-logger#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"eslint": "^5.8.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"
]
}
}