This repository has been archived by the owner on May 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.9 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@data-provider/memory",
"version": "2.1.0",
"description": "Memory origin addon for Data Provider",
"keywords": [
"data-provider",
"addon",
"origin",
"data",
"crud",
"memory",
"reactive",
"events"
],
"author": "Javier Brea",
"license": "Apache-2.0",
"homepage": "https://www.data-provider.org",
"repository": "https://github.com/data-provider/memory",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/data-provider"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"lint": "eslint src test *.js",
"lint-staged": "lint-staged",
"build": "rollup --config",
"test": "jest",
"test:unit": "jest",
"test:mutation": "stryker run"
},
"peerDependencies": {
"@data-provider/core": ">=2.10.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.10",
"@data-provider/core": "2.10.0",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.0.0",
"@stryker-mutator/core": "4.2.0",
"@stryker-mutator/jest-runner": "4.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.6.1",
"babel-polyfill": "6.26.0",
"eslint": "7.15.0",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-prettier": "3.2.0",
"husky": "4.3.5",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"redux": "4.0.5",
"rollup": "2.34.2",
"rollup-plugin-terser": "7.0.2",
"sinon": "9.2.1"
},
"lint-staged": {
"*.js": "eslint",
"src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"engines": {
"node": "10.x || 12.x || 14.x || 15.x"
}
}