-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "webpack-watch-files-plugin",
"version": "1.2.1",
"description": "Webpack watch files",
"main": "lib/index.js",
"scripts": {
"start": "npm run build:watch",
"build": "babel ./src -d ./lib",
"build:watch": "babel ./src -wd ./lib",
"lint": "standard",
"mocha": "mocha \"src/**/*.test.js\"",
"mocha:watch": "mocha --watch \"src/**/*.test.js\"",
"test": "npm run lint && npm run mocha",
"test:watch": "npm run lint && npm run mocha:watch",
"prepublish": "npm run build"
},
"author": "Florent Detry <florent@fdetry.be> (http://fdetry.be/)",
"license": "ISC",
"dependencies": {
"glob": "^7.2.0",
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "https://github.com/Fridus/webpack-watch-files-plugin.git"
},
"standard": {
"parser": "@babel/eslint-parser"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"compare-versions": "^3.6.0",
"mocha": "^9.1.2",
"standard": "^16.0.3",
"webpack": "^4.46.0"
},
"peerDependencies": {
"webpack": "^3 || ^4 || ^5"
}
}