1 | {
|
2 | "name": "tslint-clean-code",
|
3 | "version": "0.2.10",
|
4 | "description": "TSLint rules for enforcing Clean Code",
|
5 | "main": "index.js",
|
6 | "analyze": true,
|
7 | "dependencies": {
|
8 | "memoize-decorator": "^1.0.2",
|
9 | "tsutils": "2.7.1"
|
10 | },
|
11 | "devDependencies": {
|
12 | "@types/chai": "^4.1.2",
|
13 | "@types/mocha": "^2.2.48",
|
14 | "@types/node": "^9.4.6",
|
15 | "@types/react": "^15.6.14",
|
16 | "@types/underscore": "^1.8.7",
|
17 | "chai": "3.2.0",
|
18 | "grunt": "^1.0.1",
|
19 | "grunt-contrib-clean": "^1.1.0",
|
20 | "grunt-contrib-copy": "^1.0.0",
|
21 | "grunt-contrib-watch": "^1.0.0",
|
22 | "grunt-mocha-test": "0.13.2",
|
23 | "grunt-ts": "^6.0.0-beta.17",
|
24 | "grunt-tslint": "^5.0.1",
|
25 | "load-grunt-tasks": "3.2.0",
|
26 | "mocha": "2.2.5",
|
27 | "strip-indent": "^2.0.0",
|
28 | "time-grunt": "1.2.1",
|
29 | "tslint": "5.1.0",
|
30 | "tslint-microsoft-contrib": "^5.0.1",
|
31 | "typescript": "^2.4.2",
|
32 | "underscore": "1.8.3"
|
33 | },
|
34 | "peerDependencies": {
|
35 | "tslint": ">=5.1.0"
|
36 | },
|
37 | "scripts": {
|
38 | "test": "grunt all",
|
39 | "lint": "tslint 'src/**/*.ts' -e 'src/tests/references.ts'",
|
40 | "lint-fix": "tslint --fix 'src/**/*.ts' -e 'src/tests/references.ts'",
|
41 | "build": "grunt ts",
|
42 | "prepublishOnly": "npm run test"
|
43 | },
|
44 | "repository": {
|
45 | "type": "git",
|
46 | "url": "git+https://github.com/Glavin001/tslint-clean-code.git"
|
47 | },
|
48 | "keywords": [
|
49 | "tslint",
|
50 | "typescript",
|
51 | "clean",
|
52 | "code"
|
53 | ],
|
54 | "author": "Glavin Wiechert",
|
55 | "license": "MIT",
|
56 | "bugs": {
|
57 | "url": "https://github.com/Glavin001/tslint-clean-code/issues"
|
58 | },
|
59 | "homepage": "https://github.com/Glavin001/tslint-clean-code#readme"
|
60 | }
|