-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 955 Bytes
/
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
{
"name": "tinyjam",
"description": "A zero-configuration static site generator that deliberately has no features",
"main": "index.js",
"type": "module",
"exports": "./index.js",
"bin": {
"tinyjam": "./cli.js"
},
"version": "0.4.0",
"author": "Vladimir Agafonkin",
"license": "ISC",
"dependencies": {
"js-yaml": "^4.1.0",
"marked": "^4.2.3",
"yeahjs": "^0.3.0"
},
"devDependencies": {
"dir-compare": "^4.0.0",
"eslint": "^8.28.0",
"eslint-config-mourner": "^3.0.0",
"rimraf": "^3.0.2",
"tape": "^5.6.1"
},
"scripts": {
"pretest": "eslint *.js test/test.js",
"test": "node test/test.js"
},
"eslintConfig": {
"extends": "mourner",
"parserOptions": {
"ecmaVersion": 2020
}
},
"files": [
"cli.js"
],
"engines": {
"node": ">= 12.17.0"
},
"keywords": [
"static",
"site",
"generator",
"markdown",
"ejs",
"templates"
]
}