-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.58 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
{
"name": "simple-data-storage",
"version": "1.0.0",
"description": "Simple key-value storage in the browser or node",
"main": "dist/sdata.js",
"author": {
"name": "Makarov Artem"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/artmakarov/simple-data-storage/issues"
},
"homepage": "https://github.com/artmakarov/simple-data-storage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/artmakarov/simple-data-storage.git"
},
"keywords": [
"key-value",
"datastorage",
"storage",
"in-memory-database",
"in-memory-storage",
"in-memory",
"javascript-module",
"browser-storage"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"html-spa"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testMatch": [
"<rootDir>/test/*.test.js"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^25.4.0",
"rollup": "^2.7.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^5.3.0"
}
}