forked from cwoolum/ionicV4-tslint
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
112 lines (112 loc) · 3.31 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
103
104
105
106
107
108
109
110
111
112
{
"name": "@ionic/v4-migration-tslint",
"version": "1.7.1",
"description": "TSLint rules for Ionic Angular v4 Migration",
"main": "rules/index.js",
"scripts": {
"clean": "rimraf dist rules 'src/**/*.js' 'test/**/*.js' coverage test-results.xml .nyc_output",
"format:base": "prettier --config ./.prettierrc \"*.{json}\" \"src/**/*.{css,scss,ts}\" \"test/**/*.{css,scss,ts}\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write",
"lint": "tslint -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"build": "npm run clean && npm run tsc",
"src:tsc": "tsc",
"src:tsc:watch": "npm run src:tsc -- -w",
"test": "mocha --recursive",
"test:tsc": "tsc -p tsconfig.test.json",
"test:tsc:watch": "npm run test:tsc -- -w",
"test:ci": "npm run test -- --reporter mocha-junit-reporter",
"test:watch": "mocha --watch --recursive",
"test:coverage": "npm run clean && npm run build && nyc --reporter=lcov --reporter=text-lcov npm test && nyc report --reporter=text-lcov | coveralls",
"tsc": "npm run src:tsc && npm run test:tsc",
"tsc:watch": "concurrently --names 'src,test' 'npm run src:tsc:watch -- --preserveWatchOutput' 'npm run test:tsc:watch -- --preserveWatchOutput'",
"cz": "git-cz"
},
"files": [
"rules"
],
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/v4-migration-tslint.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/v4-migration-tslint/issues"
},
"homepage": "https://github.com/ionic-team/v4-migration-tslint#readme",
"dependencies": {
"codelyzer": "^4.4.4",
"tslint": "^5.0.0"
},
"devDependencies": {
"@angular/compiler": "^7.1.3",
"@angular/core": "^7.1.3",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "^12.0.0",
"@types/sprintf-js": "^1.1.0",
"chai": "^4.1.2",
"commitizen": "^3.0.2",
"concurrently": "^4.0.1",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^3.0.0",
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.17.0",
"nyc": "^14.0.0",
"path": "^0.12.7",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rxjs": "^6.2.0",
"semantic-release": "^15.1.8",
"typescript": "~2.9.2"
},
"peerDependencies": {
"@angular/compiler": "^7.1.3",
"@angular/core": "^7.1.3"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format:check"
}
},
"nyc": {
"report-dir": "./coverage",
"exclude": [
"test/*.js",
"src/**/*.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}