criticizer
Version:
Linting for Angular applications, following angular.io/styleguide.
81 lines (79 loc) • 2.55 kB
JSON
{
"name": "criticizer",
"version": "2.0.0",
"description": "Linting for Angular applications, following 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 && BUILD_TYPE=prod npm run set:vars && 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 && cp -r test/fixtures dist/test && mocha dist/test --recursive",
"test:watch": "rimraf dist && tsc && cp -r test/fixtures dist/test && 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"
},
"contributors": [
"Minko Gechev <mgechev@gmail.com>",
"Preslav Semov <preslavsemov@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": "^4.0.0-beta.6",
"@angular/core": "^4.0.0-beta.6",
"@types/chai": "^3.4.33",
"@types/less": "0.0.31",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.41",
"@types/node-sass": "^3.10.31",
"@types/source-map": "^0.5.0",
"@types/sprintf-js": "0.0.27",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"minimalist": "1.0.0",
"mocha": "3.0.2",
"node-sass": "^3.13.0",
"rimraf": "^2.5.2",
"rxjs": "5.0.1",
"ts-node": "1.2.2",
"tslint": "^4.0.0",
"typescript": "^2.1.4",
"zone.js": "^0.7.2"
},
"peerDependencies": {
"tslint": "^4.0.0",
"@angular/compiler": "^2.3.1 || >=4.0.0-beta <5.0.0",
"@angular/core": "^2.3.1 || >=4.0.0-beta <5.0.0"
},
"dependencies": {
"app-root-path": "^2.0.1",
"css-selector-tokenizer": "^0.7.0",
"cssauron": "^1.4.0",
"source-map": "^0.5.6",
"sprintf-js": "^1.0.3"
}
}