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
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "ng2lint",
"version": "0.0.9",
"description": "A set of linters for Angular 2 applications, following https://github.com/mgechev/angular2-style-guide.",
"main": "index.js",
"scripts": {
"test": "mocha ./dist/test/**",
"testw": "mocha -w dist/test/**",
"tsc": "tsc",
"tscw": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/ng2lint.git"
},
"keywords": [
"Angular",
"2",
"style",
"guide",
"ng2lint",
"lint"
],
"author": "Minko Gechev <mgechev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mgechev/ng2lint/issues"
},
"homepage": "https://github.com/mgechev/ng2lint#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"typings": "^0.6.8"
},
"peerDependencies": {
"typescript": "~1.8.0",
"angular2": "^2.0.0-beta.7"
},
"dependencies": {
"es6-promise": "^3.1.2",
"es6-shim": "^0.33.13",
"parse5": "^1.3.2",
"reflect-metadata": "^0.1.2",
"rxjs": "^5.0.0-beta.2",
"sprintf-js": "^1.0.3",
"zone.js": "^0.5.15"
}
}