-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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
{
"name": "create-logger",
"version": "1.0.0",
"description": "A web tool to create colorful console logging module for your own app",
"repository": "https://github.com/pseusys/create-logger",
"private": true,
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"debug": "webpack --mode=development",
"test": "mocha"
},
"keywords": [
"formatting",
"logger"
],
"author": "Pseusys",
"license": "ISC",
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"@types/webpack": "latest",
"babel-loader": "latest",
"babel-plugin-transform-class-properties": "latest",
"babel-preset-minify": "latest",
"clean-webpack-plugin": "latest",
"css-loader": "latest",
"html-webpack-plugin": "latest",
"less": "latest",
"less-loader": "latest",
"material-design-lite": "latest",
"mocha": "latest",
"pug": "latest",
"pug-loader": "latest",
"style-loader": "latest",
"ts-node": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "latest"
}
}