forked from liamfiddler/eleventy-plugin-typeset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 KB
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
{
"name": "eleventy-plugin-typeset-again",
"version": "1.0.1",
"description": "A plugin to create nicer typography in sites built with Eleventy (again).",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanbrook/eleventy-plugin-typeset.git"
},
"keywords": [
"eleventy",
"typeset",
"plugin",
"typography",
"punctuation",
"quotes",
"11ty"
],
"author": "Johan Brook <johan@johanbrook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johanbrook/eleventy-plugin-typeset/issues"
},
"homepage": "https://github.com/johanbrook/eleventy-plugin-typeset#readme",
"dependencies": {
"typeset": "^0.3.4"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "always"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"commonjs": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"devDependencies": {
"eslint": "^8.10.0"
}
}