-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.57 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.57 KB
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
76
77
78
{
"name": "errorlings",
"version": "1.0.0",
"license": "MIT",
"description": "",
"main": "src/index.ts",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=6",
"npm": ">=3"
},
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "mocha -r ts-node/register/transpile-only src/**/*.spec.ts",
"test:w": "mocha -r ts-node/register/transpile-only --watch-extensions ts --watch src/**/*.spec.ts",
"test:cov": "nyc mocha src/**/*.spec.ts",
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint:w": "sh Taskfile eslint_watch",
"lint:w": "run-p tsclint:w eslint:w",
"semantic-release": "semantic-release",
"prepublishOnly": "sed -i -e 's/devDependencies/_devDependencies/g' package.json",
"tsc": "tsc",
"build": "sh Taskfile build",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"commit": "git-cz"
},
"keywords": [
"errors"
],
"repository": {
"type": "git",
"url": "https://github.com/unlight/errorlings.git"
},
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.4",
"@types/expect": "1.X",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
"@typescript-eslint/eslint-plugin-tslint": "^1.2.0",
"@typescript-eslint/parser": "^1.2.0",
"eslint": "^5.13.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-tslint": "^3.1.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unicorn": "^7.1.0",
"expect": "1.X",
"inotifywait-win32": "^1.0.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-clean-code": "^0.2.9",
"tslint-microsoft-contrib": "^6.0.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}