-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 943 Bytes
/
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
{
"version": "3.0.1",
"name": "webpack-format-messages",
"repository": "lukeed/webpack-format-messages",
"description": "Beautiful formatting for Webpack messages; ported from Create React App!",
"module": "index.mjs",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=6"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.js",
"index.mjs",
"index.d.ts"
],
"scripts": {
"build": "bundt"
},
"dependencies": {
"kleur": "^4.0.0"
},
"devDependencies": {
"bundt": "1.1.2"
},
"keywords": [
"create-react-app",
"console",
"messages",
"webpack",
"pretty",
"format",
"stats",
"output"
]
}