-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.94 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@orchestrator/gen-io-ts",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/orchestratora/gen-io-ts.git"
},
"scripts": {
"ct": "git-cz",
"ng": "ng",
"start": "ng serve",
"build": "ng build gen-io-ts --prod",
"test": "ng test --watch=false",
"test:w": "ng test --watch=true",
"test:ci": "npm run test -- --code-coverage --browsers ChromeHeadless",
"test:report": "cd coverage && codecov",
"lint": "ng lint gen-io-ts",
"e2e": "ng e2e",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier \"**/*.{{j,t}sx?,json,?css,html,md}\"",
"pack": "copyfiles LICENSE README.md dist/gen-io-ts",
"semantic-release": "semantic-release"
},
"private": true,
"dependencies": {
"fp-ts": "^2.5.3",
"io-ts": "^2.1.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.900.5",
"@angular-devkit/build-ng-packagr": "^0.900.5",
"@angular/cli": "^9.0.5",
"@angular/compiler": "^9.0.5",
"@angular/compiler-cli": "^9.0.5",
"@angular/core": "^9.0.5",
"@angular/language-service": "^9.0.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jasmine": "^3.5.8",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.11.1",
"codecov": "^3.6.5",
"codelyzer": "^5.1.2",
"commitizen": "^4.0.3",
"copyfiles": "^2.2.0",
"core-js": "^3.6.4",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.2",
"lint-staged": "^10.0.8",
"ng-packagr": "^9.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"protractor": "^5.4.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"rxjs": "^6.5.4",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"tslint": "^5.11.0",
"typescript": "~3.7.5",
"zone.js": "^0.10.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm-run-all -p lint test"
}
},
"lint-staged": {
"projects/**/*.{ts}": [
"tslint -p tsconfig.json -c tslint.json --fix"
],
"projects/**/*.{ts,js,json,?css}": [
"npm run format -- --files"
]
}
}