-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "eleventy-plugin-code-demo",
"version": "0.0.1",
"description": "Add interactive code demos to an Eleventy site with iframes",
"keywords": [
"eleventy",
"eleventy-plugin",
"iframe"
],
"main": "src/index.js",
"files": [
"src/index.js",
"src/utils.js",
"src/typedefs.js",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/AleksandrHovhannisyan/eleventy-plugin-code-demo.git"
},
"homepage": "https://github.com/AleksandrHovhannisyan/eleventy-plugin-code-demo.git",
"author": {
"name": "Aleksandr Hovhannisyan",
"url": "https://www.aleksandrhovhannisyan.com"
},
"license": "MIT",
"scripts": {
"dev": "ELEVENTY_ENV=development npx @11ty/eleventy --serve --incremental",
"test": "npx jest",
"test:watch": "npx jest --watch"
},
"dependencies": {
"@minify-html/node": "^0.10.3",
"clsx": "^1.2.1",
"lodash.escape": "^4.0.1",
"markdown-it": "^13.0.1",
"outdent": "^0.8.0"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "4.3.0",
"jest": "^29.3.1",
"lint-staged": "12.1.7",
"prettier": "^2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "yarn"
}
},
"lint-staged": {
"*.js": "yarn run lint:js:fix"
}
}