-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 1.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "extra-watch-webpack-plugin",
"version": "1.0.3",
"description": "extra-watch-webpack-plugin would help you to attach extra files or dirs to webpack's watch system",
"main": "./lib/index.js",
"scripts": {
"ci": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ignore-path .gitignore src --fix ",
"test": "nyc --reporter=lcov --reporter=text ava",
"release": "babel src --out-dir lib --ignore /__tests__/",
"prepublish": "npm run lint && npm run test && npm run release"
},
"ava": {
"files": [
"src/__tests__/index.test.js"
],
"concurrency": 5,
"require": "babel-register",
"babel": "inherit"
},
"nyc": {
"exclude": [
"node_modules",
"**/__tests__",
"**/lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pigcan/extra-watch-webpack-plugin.git"
},
"keywords": [
"webpack",
"webpack-plugin",
"watch"
],
"author": "pigcan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pigcan/extra-watch-webpack-plugin/issues"
},
"homepage": "https://github.com/pigcan/extra-watch-webpack-plugin#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.10.0",
"memory-fs": "^0.4.1",
"nyc": "^11.2.1",
"webpack": "^4.21.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"dependencies": {
"glob": "^7.1.2",
"is-glob": "^4.0.0",
"lodash.uniq": "^4.5.0",
"schema-utils": "^1.0.0"
},
"files": [
"lib/",
"options.json",
"README.md"
]
}