forked from FWeinb/metalsmith-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"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": "3.2.4",
"chalk": "^4.1.2",
"gaze": "^1.0.0",
"metalsmith-filenames": "^1.0.0",
"multimatch": "^4.0.0",
"tiny-lr": "2.0.0"
},
"devDependencies": {
"babel": "^5.1.13",
"babel-eslint": "^3.0.1",
"babel-tape-runner": "^1.1.0",
"eslint": "^0.20.0",
"metalsmith": "2.5.0",
"mkdirp": "1.0.4",
"npmpub": "^3.1.0",
"rimraf": "3.0.2",
"strip-ansi": "^6.0.0",
"tape": "5.5.3"
},
"scripts": {
"prepublish": "babel src --out-dir dist",
"lint": "eslint .",
"tape": "babel-tape-runner \"__tests__/*.es\"",
"test": "npm run lint && npm run tape",
"release": "npmpub"
}
}