forked from ghidinelli/fred-jehle-spanish-verbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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": "verbos",
"version": "0.0.3",
"description": "Conjugated Spanish Verb Database",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "del-cli .work/generate-package && tsc --project tools/generate-package && node .work/generate-package/index.js && copyfiles -f tools/generate-package/schema/*.d.ts .work/typescript",
"compile": "tsc && copyfiles -f tools/generate-package/schema/*.d.ts dist",
"wipe": "del-cli .work dist",
"clean": "del-cli .work dist .cache",
"prepare": "npm run wipe && npm run generate && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miko3k/verbos.git"
},
"keywords": [
"spanish",
"verbs"
],
"author": "Peter Hanula",
"license": "CC-BY-NC-SA-3.0",
"bugs": {
"url": "https://github.com/miko3k/verbos/issues"
},
"homepage": "https://github.com/miko3k/verbos#readme",
"devDependencies": {
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.5",
"@types/request": "^2.48.7",
"copyfiles": "^2.4.1",
"core-js": "^3.20.1",
"del-cli": "^4.0.1",
"fastest-levenshtein": "^1.0.12",
"mkdirp": "^1.0.4",
"node-fetch": "^3.1.0",
"request": "^2.88.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}