This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
75 lines (75 loc) · 1.97 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "linter-tslint",
"main": "./dist/main.js",
"version": "1.11.1",
"description": "Linter plugin for Typescript, using tslint",
"repository": {
"type": "git",
"url": "https://github.com/AtomLinter/linter-tslint.git"
},
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "npm run build && atom --test spec",
"clean": "shx rm -rf dist",
"tsc.dev": "npm run build -- --watch",
"tsc.build": "tsc -p lib/tsconfig.json || echo done",
"dev": "npm run clean && cross-env NODE_ENV=development rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production rollup -c",
"build-commit": "build-commit -o dist",
"prepare": "npm run build"
},
"license": "MIT",
"engines": {
"atom": ">=1.14.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "7.2.3",
"consistent-path": "2.0.3",
"crypto-random-string": "3.3.1",
"loophole": "1.1.0",
"resolve": "1.20.0",
"tslint": "^6",
"tslint-rule-documentation": "1.0.3",
"typescript": "4.2.3"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/AtomLinter/linter-tslint/issues"
},
"homepage": "https://github.com/AtomLinter/linter-tslint",
"dist": {
"shasum": "ef99bad67e3e7db0dc69d8d379272ef02f4a4a21"
},
"package-deps": [
{
"name": "linter",
"minimumVersion": "3.3.0"
}
],
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"devDependencies": {
"@types/atom": "^1.40.10",
"@types/node": "^18.0.0",
"@types/resolve": "^1.20.0",
"build-commit": "^0.1.4",
"cross-env": "^7.0.3",
"eslint": "8.19.0",
"eslint-config-atomic": "^1.12.5",
"jasmine-fix": "1.3.1",
"rollup": "^2.44.0",
"rollup-plugin-atomic": "^3.0.0",
"shx": "^0.3.3"
},
"eslintConfig": {
"extends": "eslint-config-atomic"
}
}