-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "@ikoncept/fancylog",
"version": "1.0.4",
"description": "Console log in browser with extra fanciness",
"main": "src/index.js",
"scripts": {
"serve": "parcel demo/index.html --port 5100",
"clean": "rm -rf .cache && rm -rf dist",
"build-demo": "parcel build demo/index.html --public-url . --out-dir dist/demo --out-file index.html",
"build-pkg": "rollup -c",
"build": "yarn clean && yarn build-demo && yarn build-pkg",
"lint": "eslint --fix --ext .js,.vue src/ --cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikoncept/fancylog.git"
},
"keywords": [
"console",
"fancy",
"logging",
"debug"
],
"author": "Daniel Källstrand Modig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikoncept/fancylog/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/ikoncept/fancylog#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/eslint-plugin": "^7.14.5",
"eslint": "^8.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"lodash.merge": "^4.6.2",
"parcel-bundler": "^1.12.4",
"rollup": "^1.20.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
}
}