-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1021 Bytes
/
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
{
"name": "@alphabao/tiny-storage",
"version": "0.2.1",
"description": "A tiny localStorage util",
"repository": {
"type": "git",
"url": "https://github.com/AlphaBao/tiny-storage.git"
},
"main": "dist/index.cjs.js",
"exports": {
"import": {
"default": "./dist/index.esm.js"
},
"require": {
"default": "./dist/index.cjs.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src test",
"ci": "karma start --single-run --browsers Firefox && npm run lint",
"test": "karma start --single-run && npm run lint",
"watch": "karma start"
},
"keywords": [
"localstorage",
"local",
"storage"
],
"author": "https://alphabao.github.io/",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.41.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-vite": "^1.0.4",
"vite": "^4.3.2"
}
}