-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "reign-idb",
"description": "Reign (or `reign-idb` short for Reign IndexedDB) is lightweight library for managing IndexedDB operations in modern web applications.",
"version": "1.2.3",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"format": "prettier --write .",
"lint": "eslint . --fix",
"build": "rollup -c",
"prepare": "husky install",
"release": "standard-version"
},
"files": [
"lib",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"author": "Chessurisme",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"eslint": "^9.17.0",
"fake-indexeddb": "^6.0.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "3.4.2",
"rollup": "^4.31.0",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-visualizer": "^5.13.1",
"standard-version": "^9.5.0"
}
}