-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "@cooklang/cooklang-ts",
"version": "1.2.7",
"description": "Cooklang-TS is a TypeScript library for parsing and manipulating Cooklang recipes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "ts-node-dev --respawn --clear --rs src/index.ts",
"docs": "node tools/docs.js && typedoc --readme README.md --out docs src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cooklang/cooklang-ts.git"
},
"keywords": [
"cooklang",
"parsing",
"typescript",
"cooking-recipes",
"cooking",
"markup"
],
"author": "ThatTSGuy",
"license": "MIT",
"bugs": {
"url": "https://github.com/cooklang/cooklang-ts/issues"
},
"homepage": "https://github.com/cooklang/cooklang-ts#readme",
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.32",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.22.13",
"typescript": "^4.6.2",
"yaml": "^1.10.2"
}
}