-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "madata",
"version": "0.0.1-alpha.6",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "npx htest test/index.js",
"build:html": "npx @11ty/eleventy --config=_build/eleventy.js",
"build:docs": "npx typedoc",
"build": "npm run build:html && npm run build:docs",
"watch:html": "npx @11ty/eleventy --config=_build/eleventy.js --watch",
"watch:docs": "npx typedoc --watch --preserveWatchOutput",
"watch": "npx concurrently -n w: npm:watch:*",
"dev": "http-server -p 58504 --cors & open http://localhost:58504",
"eslint": "eslint . --ext .js --ext .cjs",
"lint": "npm run eslint -- --fix",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madatajs/madata.git"
},
"keywords": [
"data",
"APIs",
"backend"
],
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/madatajs/madata/issues"
},
"homepage": "https://github.com/madatajs/madata#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.16",
"@stylistic/eslint-plugin": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"concurrently": "^7.6.0",
"eslint": "latest",
"htest.dev": "latest",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"release-it": "^16.2.1",
"typedoc": "latest",
"typedoc-plugin-merge-modules": "latest"
},
"dependencies": {
"csv": "^6.3.1",
"smol-toml": "^1.3.0",
"urlpattern-polyfill": "^10.0.0",
"yaml": "^2.3.1"
}
}