-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
{
"name": "@xbyorange/mercury",
"version": "1.5.0",
"description": "Mercury. Reactive CRUD data layer",
"keywords": [
"reactive",
"data",
"crud",
"cache"
],
"author": "XByOrange",
"license": "Apache-2.0",
"repository": "https://github.com/xbyorange/mercury",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/mercury.umd.js",
"module": "dist/mercury.esm.js",
"scripts": {
"build": "rollup --config",
"test": "nyc mocha --recursive test",
"lint": "eslint src test",
"lint-staged": "lint-staged",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"is-promise": "^2.1.0",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-istanbul": "^5.2.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",
"lint-staged": "9.4.2",
"mocha": "^6.1.4",
"mocha-sinon-chai": "^3.0.0",
"nyc": "^14.1.1",
"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"
},
"lint-staged": {
"src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}