forked from mgechev/codelyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 KB
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
{
"name": "codelyzer",
"version": "1.0.0-dev.1",
"description": "Linting for Angular 2 applications, following https:/angular.io/styleguide.",
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"release": "npm run build && rimraf dist && tsc -p tsconfig-release.json && npm run copy:common && npm run prepare:package && npm run build:links",
"build": "rimraf dist && tsc && npm run lint && npm t",
"copy:common": "cp README.md dist",
"build:links": "ts-node build/links.ts --src ./dist",
"prepare:package": "cat package.json | ts-node build/package.ts > dist/package.json",
"test": "rimraf dist && tsc && mocha dist/test/*.js dist/test/**/*.js",
"test:watch": "rimraf dist && tsc && mocha dist/test/*.js dist/test/**/*.js --watch",
"tscv": "tsc --version",
"tsc": "tsc",
"tsc:watch": "tsc --w"
},
"contributors": [
"Minko Gechev <mgechev@gmail.com>",
"Preslav Semov <preslavsemov@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/codelyzer.git"
},
"keywords": [
"Angular",
"Angular 2",
"style guide",
"styleguide",
"ng2lint",
"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": "^2.1.1",
"@angular/core": "^2.1.1",
"@types/chai": "^3.4.33",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.41",
"@types/sprintf-js": "0.0.27",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"minimalist": "1.0.0",
"mocha": "3.0.2",
"rimraf": "^2.5.2",
"rxjs": "5.0.0-beta.12",
"ts-node": "1.2.2",
"tslint": "3.14.0",
"typescript": "^2.0.3",
"zone.js": "^0.6.21"
},
"peerDependencies": {
"tslint": "^4.0.0-dev.1",
"@angular/compiler": "~2.1.1",
"@angular/core": "~2.1.1"
},
"dependencies": {
"css-selector-tokenizer": "^0.7.0",
"cssauron": "^1.4.0",
"sprintf-js": "^1.0.3"
}
}