-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 4.13 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 4.13 KB
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
89
90
91
92
93
94
95
96
{
"name": "dotup-ts-internationalization",
"version": "1.0.7",
"description": "Library for typed translation and internationalization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"release": "npm run build-ts && npm run test && git push && npm run gh-pages && npm publish",
"release-esnext": "npm run build-esnext && npm run test && git push && npm run gh-pages && npm publish",
"release-r": "npm run build && npm run test && git push && npm run gh-pages && npm publish",
"postversion": "git push && git push --tags",
"clean-dist": "rimraf dist",
"clean-node_modules": "rimraf node_modules",
"build-ts": "npm run clean-dist && tsc -p tsconfig.build.json",
"build-test": "npm run clean-dist && tsc -p tsconfig.json",
"build-esnext": "npm run clean-dist && tsc -p tsconfig.esnext.json",
"build-r": "npm run clean-dist && rollup -c",
"build": "npm run lint && npm run build-r && npm run copy-static-assets",
"test": "mocha",
"coverage": "npm run DOESNOTWORK && npm run build-test && nyc mocha",
"test-jest": "npm run build-test && jest --forceExit --verbose",
"coverage-jest": "npm run build-test && jest --forceExit --coverage --verbose",
"coveralls-jest": "npm run coverage-jest && cat ./tests/coverage/lcov.info | coveralls",
"lint": "tsc -p tsconfig.json --noEmit && eslint \"**/*.{ts,tsx}\" --quiet --fix",
"docs": "typedoc --mode file --out docs src --exclude \"**/*+(index|.spec|.test|.e2e).ts\"",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"publish-npm": "npm publish",
"publish-npm-r": "npm run build-r && npm publish",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/sample.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-test": "npm run test -- --watchAll",
"watch-ts": "tsc -w",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\"",
"watch-debug-nodemon": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"postpublish": "git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags",
"commit-release": "git commit -a -m \"Release v%npm_package_version%\" && git push && git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\" && git push origin --tags",
"test-jasmine": "jasmine-ts",
"npm-publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotupNET/dotup-ts-internationalization.git"
},
"keywords": [
"typescript",
"typed",
"i18n",
"intl",
"cldr",
"translation",
"pluralrules",
"NumberFormat",
"DateTimeFormat"
],
"author": "Peter Ullrich",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotupNET/dotup-ts-internationalization/issues"
},
"homepage": "https://github.com/dotupNET/dotup-ts-internationalization#readme",
"dependencies": {
"dotup-ts-types": "^0.0.20",
"intl": "^1.2.5",
"intl-locales-supported": "^1.0.0",
"intl-pluralrules": "^1.0.0"
},
"devDependencies": {
"@types/intl-locales-supported": "^1.0.0",
"@types/jasmine": "^3.3.12",
"del": "^4.0.0",
"dotup-ts-git-wrapper": "^1.0.0",
"gh-pages": "^2.0.1",
"gulp": "^4.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-mocha": "^6.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typedoc": "^2.2.2",
"gulp-typescript": "^5.0.1",
"jasmine": "^3.3.1",
"jasmine-reporters": "^2.3.2",
"jasmine-ts": "^0.3.0",
"jasmine-ts-console-reporter": "^3.1.1",
"rimraf": "^2.6.3",
"ts-node": "^8.6.2",
"tslint": "^5.14.0",
"tslint-microsoft-contrib": "^6.1.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.3"
}
}