-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.56 KB
/
package.json
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
53
54
55
56
57
58
59
60
{
"name": "tslint-clean-code",
"version": "0.2.10",
"description": "TSLint rules for enforcing Clean Code",
"main": "index.js",
"analyze": true,
"dependencies": {
"memoize-decorator": "^1.0.2",
"tsutils": "2.7.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"@types/react": "^15.6.14",
"@types/underscore": "^1.8.7",
"chai": "3.2.0",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "0.13.2",
"grunt-ts": "^6.0.0-beta.17",
"grunt-tslint": "^5.0.1",
"load-grunt-tasks": "3.2.0",
"mocha": "2.2.5",
"strip-indent": "^2.0.0",
"time-grunt": "1.2.1",
"tslint": "5.1.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.4.2",
"underscore": "1.8.3"
},
"peerDependencies": {
"tslint": ">=5.1.0"
},
"scripts": {
"test": "grunt all",
"lint": "tslint 'src/**/*.ts' -e 'src/tests/references.ts'",
"lint-fix": "tslint --fix 'src/**/*.ts' -e 'src/tests/references.ts'",
"build": "grunt ts",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glavin001/tslint-clean-code.git"
},
"keywords": [
"tslint",
"typescript",
"clean",
"code"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Glavin001/tslint-clean-code/issues"
},
"homepage": "https://github.com/Glavin001/tslint-clean-code#readme"
}