-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 929 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 929 Bytes
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
{
"name": "@luminu/core",
"version": "0.5.3",
"private": false,
"description": "Luminu Web Core",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "npm run build:bash",
"build:cmd": "rmdir /q/s build && rollup -c",
"build:bash": "rm -rf build && rollup -c"
},
"repository": {
"type": "git",
"url": "git@git.luminu.net:SrTeam/lumiwebcore.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ioredis": "^4.14.1"
},
"devDependencies": {
"@types/ioredis": "^4.14.4",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"rollup": "^1.29.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1"
}
}