forked from tbo/nanoweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "nanoweb",
"version": "0.0.1",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"docs": "rm -fr site && npm run docs:site && npm run docs:api",
"docs:site": "eleventy --config=./docs/.eleventy.js",
"benchmark": "cd benchmarks && npm start",
"docs:api": "typedoc --tsconfig ./docs/tsconfig.json",
"docs:publish": "git subtree push --prefix site origin gh-pages"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbo/nanoweb.git"
},
"author": "Thomas Bonk",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/tbo/nanoweb/issues"
},
"homepage": "https://github.com/tbo/nanoweb#readme",
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@types/jest": "^29.0.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.5",
"markdown-it-attrs": "^4.1.4",
"slugify": "^1.6.5",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.14",
"typescript": "^4.8.3"
},
"dependencies": {
"@nanoweb/template": "0.0.11"
}
}