-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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": "@jirimracek/conjugate-esp",
"version": "2.4.0",
"description": "Spanish verb conjugator, castellano, voseo, canarias, formal",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "tsc && jest -b1 --noStackTrace ",
"test-verbose": "tsc && jest -b1 --verbose",
"cover": "jest --coverage",
"cover-verbose": "jest --coverage --verbose",
"lint": "eslint --ext .ts",
"flint": "eslint --fix --ext .ts",
"runme": "node bin/runme.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jirimracek/conjugate-esp.git"
},
"keywords": [
"spanish",
"verb",
"conjugation",
"voseo",
"castellano",
"canarias",
"formal",
"nodejs",
"JavaScript",
"TypeScript"
],
"author": "Jiri Mracek",
"license": "MIT",
"bugs": {
"url": "https://github.com/jirimracek/conjugate-esp/issues"
},
"homepage": "https://github.com/jirimracek/conjugate-esp#readme",
"dependencies": {
"fast-diff": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.10.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}