forked from Elderjs/elderjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@elderjs/elderjs",
"version": "1.0.6",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"engineStrict": true,
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"build": "rimraf ./build && tsc",
"dev": "tsc -w",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"eslint": "eslint --ext .ts .",
"eslint:fix": "eslint --fix --ext .ts ."
},
"files": [
"build/**/*"
],
"peerDependencies": {
"svelte": "^3.24.1",
"intersection-observer": "^0.11.0",
"systemjs": "^6.5.0"
},
"dependencies": {
"@elderjs/shortcodes": "^1.0.6",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"cli-progress": "^3.8.2",
"cosmiconfig": "^7.0.0",
"del": "^5.1.0",
"devalue": "^2.0.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"lodash.defaultsdeep": "^4.6.1",
"lodash.kebabcase": "^4.1.1",
"nanoid": "^3.1.12",
"rollup": "^2.21.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.5.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-svelte": "^6.0.1",
"rollup-plugin-terser": "^6.1.0",
"svelte": "^3.25.1",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.10.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"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",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.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"
}
}
}