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
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "codelyzer",
"version": "0.0.28",
"description": "A set of linters for Angular 2 applications, following https:/angular.io/styleguide.",
"main": "index.js",
"scripts": {
"typings": "typings",
"release": "rimraf dist && tsc && npm t && cp package.json README.md dist/src && ts-node build/links.ts --src ./dist/src",
"test": "rimraf dist && tsc && mocha --compilers ts:ts-node/register",
"test:watch": "npm run test -- -w",
"tsc": "tsc",
"tscw": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/codelyzer.git"
},
"keywords": [
"Angular",
"2",
"style",
"guide",
"ng2lint",
"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": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"minimalist": "1.0.0",
"mocha": "3.0.2",
"rimraf": "^2.5.2",
"ts-node": "1.2.2",
"tslint": "3.14.0",
"typings": "1.3.2"
},
"peerDependencies": {
"tslint": "^3.9.0"
},
"dependencies": {
"sprintf-js": "^1.0.3"
}
}