forked from mgechev/codelyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.56 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
{
"name": "codelyzer",
"version": "5.0.0-beta.2",
"description": "Linting for Angular applications, following angular.io/styleguide.",
"main": "index.js",
"scripts": {
"docs": "ts-node build/buildDocs.ts",
"format:base": "prettier --config ./.prettierrc \"*.{json,md}\" \"src/**/*.{css,scss,ts}\" \"test/**/*.{css,scss,ts}\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write",
"generate-changelog": "standard-version -t ''",
"lint": "tslint -p . -c tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"release": "npm run build && rimraf dist && tsc -p tsconfig-release.json && npm run copy:common && npm run prepare:package && cross-env BUILD_TYPE=prod npm run set:vars",
"build": "rimraf dist && tsc && npm run format:check && npm run lint && npm t",
"copy:common": "ncp README.md dist/README.md",
"prepare:package": "cat package.json | ts-node build/package.ts > dist/package.json",
"test": "rimraf dist && tsc && ncp test/fixtures dist/test/fixtures && mocha dist/test --recursive",
"test:watch": "rimraf dist && tsc && ncp test/fixtures dist/test/fixtures && cross-env BUILD_TYPE=dev npm run set:vars && mocha dist/test --watch --recursive",
"set:vars": "ts-node build/vars.ts --src ./dist",
"tscv": "tsc --version",
"tsc": "tsc",
"tsc:watch": "tsc --w"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"git add"
],
"*.{css,json,md,scss,ts}": [
"npm run format:fix",
"git add"
]
},
"contributors": [
"Minko Gechev <mgechev@gmail.com>",
"Preslav Semov <preslavsemov@gmail.com>",
"William Koza <william.koza@gmail.com>",
"Eugenio Romano <eugenioromanodeveloper@gmail.com>",
"Rafael Santana <rafaelsantana3095@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/codelyzer.git"
},
"keywords": [
"Angular",
"style guide",
"styleguide",
"nglint",
"codelyzer",
"lint",
"tslint"
],
"author": {
"name": "Minko Gechev",
"email": "mgechev@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/codelyzer/issues"
},
"homepage": "https://github.com/mgechev/codelyzer#readme",
"devDependencies": {
"@angular/compiler": "^7.2.7",
"@angular/core": "^7.2.7",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-angular": "^7.5.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.10.4",
"@types/node-sass": "^4.11.0",
"@types/sprintf-js": "^1.1.2",
"cat": "^0.2.0",
"chai": "^4.2.0",
"chai-spies": "^0.7.1",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
"js-yaml": "^3.12.2",
"json-stringify-pretty-compact": "2.0.0",
"lint-staged": "^8.1.5",
"mocha": "^6.0.2",
"ncp": "^2.0.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"rxjs": "^6.4.0",
"standard-version": "^5.0.1",
"ts-node": "^8.0.2",
"tslint": "~5.14.0",
"typescript": "~3.3.3333",
"zone.js": "^0.8.29"
},
"peerDependencies": {
"@angular/compiler": ">=2.3.1 <8.0.0 || >7.0.0-beta <9.0.0",
"@angular/core": ">=2.3.1 <8.0.0 || >7.0.0-beta <9.0.0",
"tslint": "^5.0.0"
},
"dependencies": {
"app-root-path": "^2.1.0",
"aria-query": "^3.0.0",
"axobject-query": "^2.0.2",
"css-selector-tokenizer": "^0.7.1",
"cssauron": "^1.4.0",
"damerau-levenshtein": "^1.0.4",
"semver-dsl": "^1.0.1",
"source-map": "^0.5.7",
"sprintf-js": "^1.1.2"
}
}