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
|
{
"name": "time-fix-plugin",
"version": "2.0.5",
"description": "Fix startTime for webpack watcher",
"repository": {
"url": "egoist/time-fix-plugin",
"type": "git"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "npm run lint && echo 'no tests!'",
"lint": "xo"
},
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"peerDependencies": {
"webpack": ">=4.0.0"
},
"devDependencies": {
"eslint-config-rem": "^3.0.0",
"webpack": "^4.0.1",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem",
"ignores": [
"example/**"
]
}
}
|