-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.2 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
{
"author": "Antti Hilja",
"description": "Asynchronous bulk edit utility for Front Matter powered Markdown files",
"license": "ISC",
"main": "index.js",
"name": "file-batcher",
"version": "0.0.1-beta.0",
"repository": "https://github.com/hilja/file-batcher",
"homepage": "https://github.com/hilja/file-batcher",
"keywords": [
"markdown",
"front matter",
"bulk",
"read",
"write"
],
"scripts": {
"test": "jest spec.js --config=jest.config.js",
"jest": "jest --config=jest.config.js"
},
"dependencies": {
"delay": "^4.3.0",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"immutability-helper": "^3.0.1",
"lodash.get": "^4.4.2",
"p-map": "^3.0.0",
"trash": "^6.1.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"clean-slate-lint": "^1.0.9",
"jest": "^24.9.0",
"jest-plugin-fs": "^2.9.0"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true
}
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/clean-slate-lint",
"pre-rewrite": "./node_modules/.bin/clean-slate-lint"
}
}
}