-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "cooklang",
"version": "0.3.1",
"description": "A library for parsing CookLang in JavaScript",
"keywords": [
"cooklang"
],
"homepage": "https://github.com/deathau/cooklang-js#readme",
"bugs": {
"url": "https://github.com/deathau/cooklang-js/issues"
},
"license": "MIT-0",
"author": "death_au",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/deathau"
},
{
"type": "paypal",
"url": "https://www.paypal.me/deathau"
}
],
"main": "dist/cooklang.js",
"types": "dist/cooklang.d.ts",
"repository": "github:deathau/cooklang-js",
"scripts": {
"build": "tsc",
"test": "npx jest --verbose --",
"test:watch": "npx jest --watch --",
"coverage": "npx jest --collectCoverage --"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"yaml": "^1.10.2"
}
}