-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1017 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1017 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
36
37
38
39
{
"name": "coolsole",
"version": "0.0.7",
"description": "pretty console.log with cool-askii-faces",
"main": "dist/coolsole.min.js",
"scripts": {
"build": "babel src/index.js | uglifyjs --compress -o dist/coolsole.min.js",
"bundle": "webpack -p",
"npmpub": "yarn build && yarn bundle && npm publish",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devjiro76/coolsole.git"
},
"keywords": [
"console",
"cool",
"colsole.log"
],
"author": "devjiro76@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/devjiro76/coolsole/issues"
},
"homepage": "https://github.com/devjiro76/coolsole#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"uglify-js": "^3.4.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
},
"dependencies": {
"cool-ascii-faces": "^1.3.4"
},
"unpkg": "dist/coolsole.bundle.js"
}