-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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
{
"name": "@travelport-czech/valid-objects-ts",
"version": "6.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Travelport-Czech/valid-objects-ts.git"
},
"author": "Michal Bureš <[email protected]>",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"lint": "tsc --project tsconfig.json && tslint --project tsconfig.json --config tslint.json",
"build": "tsc --project tsconfig.json && gulp --gulpfile gulpfile.js",
"autofix": "prettier src/**/* --write --single-quote --no-semi --print-width 120 --end-of-line lf",
"test": "mocha -r ts-node/register -r tsconfig-paths/register src/**/*.test.ts"
},
"dependencies": {
"@types/numeral": "^0.0.25",
"@types/valid-url": "^1.0.2",
"dayjs": "^1.8.16",
"email-validator": "^2.0.4",
"extendable-error": "^0.1.5",
"number-format.js": "^2.0.8",
"numeral": "^2.0.6",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"mocha": "^6.2.3",
"path-alias-resolver": "git+https://github.com/Travelport-Czech/path-alias-resolver.git#v1.0.5",
"prettier": "1.16.4",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"tslint": "5.15.0",
"tslint-config-prettier": "1.18.0",
"tslint-consistent-codestyle": "1.15.1",
"tslint-eslint-rules": "5.4.0",
"tslint-immutable": "5.5.2",
"tslint-microsoft-contrib": "6.1.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.6.4"
},
"description": "Valid object improving application data management and make them more safe.",
"bugs": {
"url": "https://github.com/Travelport-Czech/valid-objects-ts/issues"
},
"homepage": "https://github.com/Travelport-Czech/valid-objects-ts#readme"
}