-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "@netatwork/aurelia-i18n-tools",
"version": "4.1.1",
"description": "A toolchain to help with localization in aurelia projects.",
"repository": {
"type": "git",
"url": "https://github.com/Netatwork-de/aurelia-i18n-tools"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"naw-aurelia-i18n": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig-build.json",
"build:watch": "tsc -p tsconfig-build.json -w",
"test": "tsc -p tsconfig-test.json && ava",
"start": "tsc -p tsconfig-test.json && concurrently \"tsc -p tsconfig-test.json -w\" \"ava -w\"",
"prepack": "npm test && npm run build"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"chokidar": "^3.6.0",
"decamelize": "^6.0.0",
"parse5": "^7.1.2",
"picomatch": "^4.0.1",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/node": "^20.11.29",
"@types/parse5": "^7.0.0",
"@types/picomatch": "^2.3.3",
"@types/yargs-parser": "^21.0.3",
"ava": "^6.1.2",
"concurrently": "^8.2.2",
"typescript": "^5.4.2"
},
"author": "Net at Work GmbH",
"license": "Apache-2.0"
}