-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.24 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
{
"name": "@swellaby/tslint-config",
"version": "3.0.19",
"description": "Our tslint configurations",
"license": "MIT",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Swellaby",
"email": "opensource@swellaby.com",
"url": "http://swellaby.com"
},
"keywords": [
"tslint",
"tslint-config",
"tslint config"
],
"contributors": [
{
"name": "Caleb Cartwright",
"url": "https://github.com/calebcartwright"
},
{
"name": "Bailey Everts",
"url": "https://github.com/beverts312"
}
],
"repository": {
"type": "git",
"url": "https://github.com/swellaby/tslint-config.git"
},
"bugs": {
"url": "https://github.com/swellaby/tslint-config/issues",
"email": "opensource@swellaby.com"
},
"homepage": "https://github.com/swellaby/tslint-config/",
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^8.0.0",
"mocha": "^9.0.0",
"mocha-multi-reporters": "^1.1.7",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3"
},
"dependencies": {
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0"
},
"peerDependencies": {
"tslint": ">=4.0.0"
},
"scripts": {
"build": "npm run lint && npm test",
"lint": "eslint **/*.js",
"pretest": "rimraf .testresults/unit",
"test": "mocha --config test/unit/.mocharc.yml",
"version:tagless": "npm --no-git-tag-version version patch",
"prepublish:local": "npm run build && npm run version:tagless",
"publish:local": "npm publish",
"clean:testresults": "rimraf .testresults/",
"clean:deps": "npm run clean:deps:tests && npm run clean:deps:root",
"clean:deps:root": "node -e \"require('rimraf').sync('node_modules');\"",
"clean:deps:tests": "node -e \"require('rimraf').sync('./test/functional/fixtures/node_modules');\"",
"clean": "npm run clean:testresults && npm run clean:deps",
"dev:reset": "npm run clean && npm run dev:setup",
"dev:setup": "npm i && npm run build",
"test:functional:setup": "cd test/functional/fixtures && npm i",
"pretest:functional": "rimraf .testresults/functional",
"test:functional": "mocha --config test/functional/.mocharc.yml"
}
}