-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
{
"name": "qqd",
"version": "1.6.0",
"description": "Quick-and-dirty debugging output for tired programmers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"check": "npm run clean && npm run build && npm run prettier && npm run lint && npm test",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"prepublishOnly": "npm run check",
"prettier": "prettier --check . '!dist/**'",
"prettier:fix": "prettier --write . '!dist/**'",
"release": "np",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomsquest/q.js.git"
},
"keywords": [
"dirty",
"debug",
"q",
"js",
"javascript",
"typescript"
],
"author": "Thomas Queste <[email protected]> (http://www.tomsquest.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tomsquest/q.js/issues"
},
"homepage": "https://github.com/tomsquest/q.js#readme",
"jest": {
"notify": true,
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 60000,
"rootDir": "src"
},
"lint-staged": {
"*.{js,json,ts,md}": "npm run prettier:fix --",
"*.ts": "npm run lint:fix --"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-only-error": "1.0.2",
"eslint-plugin-radar": "0.2.1",
"husky": "6.0.0",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"np": "7.5.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"typescript": "4.2.4"
},
"dependencies": {
"callsites": "3.1.0"
}
}