-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "metalsmith-watch",
"version": "1.0.4",
"description": "Metalsmith plugin to watch for changes and trigger partial and full rebuilds",
"keywords": [
"metalsmith",
"metalsmith-plugin"
],
"authors": [
"Fabrice Weinberg",
"Maxime Thirouin"
],
"license": "MIT",
"repository": "https://github.com/FWeinb/metalsmith-watch.git",
"files": [
"dist"
],
"main": "dist/index.js",
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.0.0",
"gaze": "^1.0.0",
"metalsmith-filenames": "^1.0.0",
"multimatch": "^2.0.0",
"tiny-lr": "^1.1.1",
"unyield": "0.0.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "^9.0.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-tape-runner": "^2.0.1",
"eslint": "^6.8.0",
"metalsmith": "^2.3.0",
"mkdirp": "^1.0.3",
"npmpub": "^3.1.0",
"rimraf": "^2.3.3",
"tape": "^4.0.0"
},
"scripts": {
"prepublish": "babel src --out-dir dist",
"lint": "eslint .",
"tape": "babel-tape-runner \"__tests__/*.es\"",
"test": "npm run lint && npm run tape",
"release": "npmpub"
}
}