-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@criticalmanufacturing/dev-i18n-transform",
"version": "1.0.10",
"description": "i18n <--> gettext transform",
"main": "src/index.js",
"scripts": {
"build": "node node_modules/typescript/bin/tsc",
"build-translation-tool": "node node_modules/typescript/bin/tsc src/bin/import.ts",
"start": "node node_modules/nodemon/bin/nodemon src/index.js --ignore test/",
"test": "node node_modules/mocha/bin/mocha test/**/*.js test/*.js --timeout 5000",
"cover": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha test/**/*.js test/*.js",
"coveralls": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report lcovonly test/**/*.js test/*.js -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"vs:buildAndTest": "npm run build && npm run vs:test",
"vs:test": "node node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha --report cobertura --report lcov test/*.js test/**/*.js -- --timeout 5000 --reporter mocha-junit-reporter --reporter-options mochaFile=./test/test-results.xml",
"pretest": "npm run build",
"watch": "npm run build -- -w | node node_modules/mocha/bin/mocha --timeout 5000 --reporter min -w test/*.js test/**/*.js",
"ci:publish": "npm publish",
"ci:version-prerelease": "npm version %npm_package_version%-%BUILD_BUILDNUMBER% --no-git-tag-version"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-string": "^1.4.1",
"@types/gulp-util": "^3.0.31",
"@types/js-beautify": "^1.8.1",
"@types/mocha": "^2.2.39",
"@types/mssql": "^4.0.15",
"@types/node": "^7.0.18",
"@types/through2": "^2.0.32",
"@types/vinyl": "^2.0.0",
"@types/winston": "^2.3.2",
"@types/yargs": "^6.6.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.23.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/criticalmanufacturing/dev-i18n-transform.git"
},
"keywords": [
"CMF",
"UXFAB",
"PO",
"i18n",
"Typescript",
"POT"
],
"author": "Critical Manufacturing",
"license": "SEE LICENSE IN \"license\"",
"bugs": {
"url": "https://github.com/criticalmanufacturing/dev-i18n-transform/issues"
},
"homepage": "https://github.com/criticalmanufacturing/dev-i18n-transform#readme",
"dependencies": {
"@types/i18next-xhr-backend": "^1.4.2",
"@types/request": "^2.48.1",
"azure-devops-node-api": "^9.0.1",
"gulp": "^4.0.2",
"gulp-util": "^3.0.8",
"http": "0.0.0",
"i18n-2": "^0.7.3",
"i18next": "^17.0.6",
"i18next-xhr-backend": "^3.0.0",
"js-beautify": "^1.10.0",
"mssql": "^5.1.0",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"through2": "^3.0.1",
"typeorm": "^0.2.18",
"vinyl": "^2.2.0",
"winston": "^2.4.4",
"yargs": "^13.2.4"
},
"publishConfig": {
"access": "public"
},
"bin": {
"i18n-import": "./src/bin/import.js"
}
}