1
|
{
|
2
|
"name": "watchpack",
|
3
|
"version": "1.6.1",
|
4
|
"description": "",
|
5
|
"main": "./lib/watchpack.js",
|
6
|
"directories": {
|
7
|
"test": "test"
|
8
|
},
|
9
|
"files": [
|
10
|
"lib/"
|
11
|
],
|
12
|
"scripts": {
|
13
|
"pretest": "npm run lint",
|
14
|
"test": "mocha",
|
15
|
"travis": "npm run cover -- --report lcovonly",
|
16
|
"lint": "eslint lib",
|
17
|
"precover": "npm run lint",
|
18
|
"cover": "istanbul cover node_modules/mocha/bin/_mocha"
|
19
|
},
|
20
|
"repository": {
|
21
|
"type": "git",
|
22
|
"url": "https://github.com/webpack/watchpack.git"
|
23
|
},
|
24
|
"author": "Tobias Koppers @sokra",
|
25
|
"license": "MIT",
|
26
|
"bugs": {
|
27
|
"url": "https://github.com/webpack/watchpack/issues"
|
28
|
},
|
29
|
"homepage": "https://github.com/webpack/watchpack",
|
30
|
"devDependencies": {
|
31
|
"codecov.io": "^0.1.6",
|
32
|
"coveralls": "^3.0.0",
|
33
|
"eslint": "^4.18.1",
|
34
|
"istanbul": "^0.4.3",
|
35
|
"mocha": "^5.0.1",
|
36
|
"rimraf": "^2.6.2",
|
37
|
"should": "^8.3.1"
|
38
|
},
|
39
|
"dependencies": {
|
40
|
"chokidar": "^2.1.8",
|
41
|
"graceful-fs": "^4.1.2",
|
42
|
"neo-async": "^2.5.0"
|
43
|
}
|
44
|
}
|