-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "stylog",
"version": "1.1.0",
"description": "🎨 Stylish way how to easily format console.log messages",
"license": "MIT",
"main": "dist/stylog.cjs.js",
"module": "dist/stylog.es.js",
"unpkg": "dist/stylog.umd.min.js",
"author": "Jakub Benes <[email protected]>",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/jukben/stylog"
},
"homepage": "https://github.com/jukben/stylog",
"keywords": [
"log",
"styled"
],
"scripts": {
"prepublish": "yarn run build",
"build": "rollup -c",
"dev": "yarn run build -w",
"test": "jest"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.0.1",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-uglify-es": "^0.0.1"
}
}