-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"name": "angular-multimodule-cli",
"version": "0.0.3",
"main": "dist/index.js",
"license": "MIT",
"author": "Ryanair DAC Developers",
"bin": {
"ng-multi": "./bin/ng-multi"
},
"scripts": {
"cz": "git-cz",
"prebuild": "rimraf ./dist",
"build": "tsc",
"precommit": "lint-staged",
"lint": "tslint --type-check --project tsconfig.json",
"release": "standard-version"
},
"dependencies": {
"caporal": "^0.10.0",
"fs-extra": "^4.0.2",
"inquirer": "^3.3.0",
"ora": "^1.3.0"
},
"devDependencies": {
"@types/fs-extra": "^4.0.2",
"@types/inquirer": "^0.0.35",
"@types/node": "^8.0.31",
"@types/ora": "^1.3.1",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"standard-version": "^4.2.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typescript": "^2.5.3"
},
"lint-staged": {
"*.ts": [
"prettier --single-quote --write",
"git add"
]
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Ryanair/angular-multimodule-cli.git"
},
"bugs": {
"url": "https://github.com/Ryanair/angular-multimodule-cli/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}