-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.06 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": "@q42/dutch-to-haags-translator",
"version": "1.2.3",
"description": "Translate Dutch to the Hague dialect",
"main": "dist/translator.js",
"engines": {
"node": ">=10.7"
},
"scripts": {
"compile": "rm -rf ./dist && tsc",
"compile:watch": "rm -rf ./dist && tsc --watch",
"lint": "tslint --project tsconfig.json",
"test": "jest --coverage",
"posttest": "npm run lint",
"dryrun": "npm-run-all compile test && npm pack",
"preversion": "npm-run-all test compile",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/Q42/haags-translator"
},
"keywords": [
"translate",
"dutch",
"the-hague",
"haags"
],
"author": {
"name": "Bob van Oorschot",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.16",
"jest": "^29.0.2",
"merge": ">=1.2.1",
"npm-run-all": "^4.1.5",
"tslint": "^6.1.3",
"typescript": "^4.8.2"
},
"dependencies": {
"source-map-support": "^0.5.21"
}
}