-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "beautiful-console",
"version": "1.0.5",
"description": "Make your browser console beautiful",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "./node_modules/rollup/dist/bin/rollup -c",
"lint": "eslint --ext ts src/**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZhiliangLiu/beautiful-console.git"
},
"keywords": [
"browser",
"console"
],
"author": "Zoran Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZhiliangLiu/beautiful-console/issues"
},
"homepage": "https://github.com/ZhiliangLiu/beautiful-console#readme",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.21.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.7"
},
"dependencies": {
"core-js": "3",
"open-color": "^1.7.0"
}
}