|
1 | 1 | {
|
2 | 2 | "name": "codelyzer",
|
3 |
| - "version": "0.0.28", |
4 |
| - "description": "A set of linters for Angular 2 applications, following https:/angular.io/styleguide.", |
| 3 | + "version": "1.0.0-beta.0", |
| 4 | + "description": "Linting for Angular 2 applications, following https:/angular.io/styleguide.", |
5 | 5 | "main": "index.js",
|
6 | 6 | "scripts": {
|
7 |
| - "postinstall": "typings install", |
8 | 7 | "lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
|
9 |
| - "release": "rimraf dist && tsc && npm t && cp package.json README.md dist/src && ts-node build/links.ts --src ./dist/src", |
| 8 | + "release": "npm run build && npm run copy:common && npm run prepare:package && npm run build:links", |
| 9 | + "build": "rimraf dist && tsc && npm run lint && npm t", |
| 10 | + "copy:common": "cp README.md dist/src", |
| 11 | + "build:links": "ts-node build/links.ts --src ./dist/src", |
| 12 | + "prepare:package": "cat package.json | ts-node build/package.ts > dist/src/package.json", |
10 | 13 | "test": "rimraf dist && tsc && mocha dist/test/*.js dist/test/**/*.js",
|
11 | 14 | "test:watch": "rimraf dist && tsc && mocha dist/test/*.js dist/test/**/*.js --watch",
|
12 | 15 | "tscv": "tsc --version",
|
13 | 16 | "tsc": "tsc",
|
14 | 17 | "tscw": "tsc --w"
|
15 | 18 | },
|
| 19 | + "contributors": [ |
| 20 | + "Minko Gechev <[email protected]>", |
| 21 | + "Preslav Semov <[email protected]>" |
| 22 | + ], |
16 | 23 | "repository": {
|
17 | 24 | "type": "git",
|
18 | 25 | "url": "git+https://github.com/mgechev/codelyzer.git"
|
|
36 | 43 | },
|
37 | 44 | "homepage": "https://github.com/mgechev/codelyzer#readme",
|
38 | 45 | "devDependencies": {
|
| 46 | + "@angular/compiler": "^2.0.0", |
| 47 | + "@angular/core": "^2.0.0", |
| 48 | + "@types/chai": "^3.4.33", |
| 49 | + "@types/es6-shim": "^0.31.32", |
| 50 | + "@types/mocha": "^2.2.32", |
| 51 | + "@types/node": "^6.0.41", |
| 52 | + "@types/sprintf-js": "0.0.27", |
39 | 53 | "chai": "^3.5.0",
|
40 | 54 | "chai-spies": "^0.7.1",
|
41 | 55 | "minimalist": "1.0.0",
|
42 | 56 | "mocha": "3.0.2",
|
43 | 57 | "rimraf": "^2.5.2",
|
| 58 | + "rxjs": "^5.0.0-beta.12", |
44 | 59 | "ts-node": "1.2.2",
|
45 | 60 | "tslint": "3.14.0",
|
46 |
| - "typings": "1.3.2" |
| 61 | + "zone.js": "^0.6.21" |
47 | 62 | },
|
48 | 63 | "peerDependencies": {
|
49 |
| - "tslint": "^3.9.0" |
| 64 | + "tslint": "^3.9.0", |
| 65 | + "@angular/compiler": "^2.0.0", |
| 66 | + "@angular/core": "^2.0.0" |
50 | 67 | },
|
51 | 68 | "dependencies": {
|
52 |
| - "@angular/compiler": "^2.0.0", |
53 |
| - "@angular/core": "^2.0.0", |
54 |
| - "rxjs": "^5.0.0-beta.12", |
55 |
| - "sprintf-js": "^1.0.3", |
56 |
| - "zone.js": "^0.6.21" |
| 69 | + "sprintf-js": "^1.0.3" |
57 | 70 | }
|
58 | 71 | }
|
0 commit comments