-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "@xbyorange/mercury-browser-storage",
"version": "1.2.0",
"description": "Mercury origins for local and session storage in browsers",
"keywords": [
"reactive",
"data",
"crud",
"browser",
"local storage",
"session storage"
],
"author": "XByOrange",
"license": "Apache-2.0",
"repository": "https://github.com/xbyorange/mercury-browser-storage",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/mercury-browser-storage.umd.js",
"module": "dist/mercury-browser-storage.esm.js",
"scripts": {
"lint": "eslint src test",
"lint-staged": "lint-staged",
"build": "rollup --config",
"test": "jest",
"test-ci": "npm run test -- --coverage --ci --verbose=false --coverageReporters=lcov --coverageReporters=text-summary",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"peerDependencies": {
"@xbyorange/mercury": "1.5.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@xbyorange/mercury": "1.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.7",
"eslint": "6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"sinon": "^7.5.0"
},
"lint-staged": {
"src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}