This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
{
"name": "storage4ns",
"version": "1.0.0",
"description": "Graceful storage solution with namespace.",
"repository": "[email protected]:tuanzisama/storage4ns.git",
"author": "tuanzisama <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"start": "yarn run clean && cross-env NODE_ENV=development rollup -w -c scripts/rollup.config.dev.js",
"build": "yarn run clean && cross-env NODE_ENV=production rollup -c scripts/rollup.config.prod.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/lodash.forin": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "3.0.0",
"core-js": "2",
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"prettier": "1.9.1",
"prettier-eslint": "10.1.0",
"rollup": "^2.58.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.7.7",
"uglify-es": "^3.3.9"
},
"files": [
"dist",
"types"
],
"typings": "types/index.d.ts",
"main": "dist/storage4ns.cjs.js",
"module": "dist/storage4ns.esm.js",
"browser": "dist/storage4ns.esm.js",
"unpkg": "dist/storage4ns.js",
"jsdelivr": "dist/storage4ns.js",
"keywords": [
"storage",
"namespace storage"
],
"bugs": {
"url": "https://github.com/tuanzisama/storage4ns/issues"
},
"homepage": "https://github.com/tuanzisama/storage4ns"
}