-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "eleventy-plugin-git-commit-date",
"version": "0.1.3",
"description": "Eleventy plugin to get Git commit time of a file, or a Eleventy collection.",
"main": ".eleventy.js",
"repository": {
"type": "git",
"url": "git+https://github.com:saneef/eleventy-plugin-git-commit-date.git"
},
"scripts": {
"lint": "eslint src/**.js tests/**.js",
"test": "nyc ava --timeout=1m -v --color",
"prepare": "husky install"
},
"keywords": [
"last-updated",
"modified",
"git",
"eleventy",
"11ty",
"eleventy-plugin"
],
"author": "Saneef Ansari <[email protected]> (https://saneef.com/)",
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo-space": "^0.29.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,json}": "prettier --write"
},
"ava": {
"files": [
"tests/**/*",
"!tests/utils.js"
],
"ignoredByWatcher": [
"tests/output/**"
]
}
}