-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
54
55
56
57
58
{
"name": "@elderjs/hooks",
"version": "0.0.1",
"engineStrict": true,
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"eslint": "eslint --ext .ts .",
"eslint:fix": "eslint --fix --ext .ts ."
},
"files": [
"hooks/**/*"
],
"dependencies": {
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
},
"description": "Elder.js is an opinionated static site generator and web framework built with SEO in mind.",
"repository": {
"type": "git",
"url": "git+https://github.com/Elderjs/elderjs.git"
},
"keywords": [
"svelte",
"seo",
"static",
"site",
"generator",
"ssg",
"sveltejs"
],
"author": "Nick Reese",
"license": "MIT",
"bugs": {
"url": "https://github.com/Elderjs/elderjs/issues"
},
"homepage": "https://elderguide.com/tech/elderjs/",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}