-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "browser-storage-db",
"version": "1.0.0",
"description": "Simple db based on browser localStorage or sessionStorage",
"main": "dist/main.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "jest && npm run lint",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && webpack -p --config webpack.config.js",
"prepublish": "npm run test && npm run build",
"coverage": "jest --coverage",
"coverage:report": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint -c .eslintrc.json src/*.js",
"lint:fix": "eslint --fix -c .eslintrc.json src/*.js"
},
"keywords": [
"localStorage",
"sessionStorage",
"browser",
"db"
],
"repository": "https://github.com/mprzodala/browser-storage-db",
"homepage": "https://github.com/mprzodala/browser-storage-db",
"author": "Mariusz Przodała",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"jest": "^20.0.4",
"webpack": "^2.6.1"
},
"dependencies": {},
"jest": {
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"collectCoverage": true
}
}