-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@ni/xliff-to-json-converter",
"version": "1.1.8",
"description": "A utility to convert translation files from XLIFF to JSON for Angular localization",
"main": "dist/commonjs/cli.js",
"bin": {
"xliff-to-json-converter": "./dist/commonjs/cli.js"
},
"scripts": {
"build": "npm run compile",
"compile": "tsc -p tsconfig.json",
"compile-watch": "tsc -p tsconfig.json -w",
"lint": "eslint .",
"format": "eslint . --fix",
"pack": "npm pack",
"invoke-publish": "npm publish",
"tdd": "npm run build && npm run test",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ni/nimble.git",
"directory": "packages/xliff-to-json-converter"
},
"publishConfig": {
"access": "public"
},
"author": "National Instruments",
"license": "MIT",
"devDependencies": {
"@ni-private/eslint-config-nimble": "*",
"@types/jasmine": "^5.1.4",
"@types/yargs": "^17.0.10",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.2",
"typescript": "~5.4.5"
},
"dependencies": {
"xliff": "^6.1.0",
"yargs": "^17.5.1"
}
}