forked from BlackBeltTechnology/pandino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.01 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
81
82
83
84
85
86
87
88
{
"name": "@pandino/persistence-manager-localstorage",
"version": "0.8.24",
"description": "Localstorage implementation of the Pandino Persistence Manager API",
"module": "./dist/esm/persistence-manager-localstorage.mjs",
"types": "dist/esm/dist/index.d.ts",
"type": "module",
"exports": {
".": {
"default": "./dist/esm/persistence-manager-localstorage.mjs"
}
},
"scripts": {
"test": "jest",
"build": "rollup -c --environment=PRODUCTION",
"build:dev": "rollup -c"
},
"keywords": [
"pandino",
"bundle",
"persistence",
"management",
"admin",
"localestorage"
],
"author": "Norbert Herczeg <[email protected]>",
"license": "EPL-2.0",
"homepage": "https://github.com/BlackBeltTechnology/pandino",
"repository": {
"type": "git",
"url": "https://github.com/BlackBeltTechnology/pandino.git",
"directory": "packages/@pandino/persistence-manager-localstorage"
},
"bugs": {
"url": "https://github.com/BlackBeltTechnology/pandino/issues"
},
"engines": {
"node": ">=14.9.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@pandino/pandino-api": "^0.8.24",
"@pandino/persistence-manager-api": "^0.8.24",
"@pandino/rollup-plugin-generate-manifest": "^0.8.24"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"json",
"html"
],
"coverageThreshold": {
"global": {
"statements": 85,
"branches": 90,
"functions": 95,
"lines": 85
}
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"pandino": {
"manifest": {
"Provide-Capability": "@pandino/persistence-manager;type=\"dom-localstorage\";objectClass=\"@pandino/persistence-manager/PersistenceManager\""
}
}
}