-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.84 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
76
77
78
79
80
81
82
{
"name": "ts-trace-event",
"version": "0.4.0",
"description": "Google's Trace Event format tracer written in Typescript",
"keywords": [
"ts-trace-event",
"google",
"trace",
"event",
"format"
],
"main": "dist/index.js",
"types": "dist/index.d.js",
"typings": "dist/index.d.js",
"license": "MIT",
"repository": "https://github.com/haoadoresorange/ts-trace-event.git",
"author": "haoadoresorange",
"files": [
"dist",
"src"
],
"scripts": {
"postinstall": "husky install",
"bump-version": "yarn version --no-commit-hooks",
"prepack": "pinst --disable && yarn build",
"postpack": "pinst --enable",
"build": "rimraf dist && gulp",
"lint": "eslint '**/*.{js,ts}' --quiet --fix",
"lint-staged": "lint-staged",
"test": "jest",
"semver": "yarn dev --upgrade && yarn upgrade && syncyarnlock -sk && yarn",
"latest": "yarn dev --upgrade && yarn upgrade -L && syncyarnlock -sk && yarn"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --quiet --fix"
]
},
"jest": {
"preset": "ts-jest",
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-strip-code": "^0.1.4",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.4",
"jest": "^27.0.4",
"lint-staged": "^10.5.4",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"syncyarnlock": "^1.0.19",
"ts-jest": "^27.0.2",
"ttypescript": "^1.5.12",
"typescript": "4.4.4"
},
"dependenciesDescription": {
"@tsconfig/node14": "Recommend tsconfig for node 14",
"@typescript-eslint/eslint-plugin": "ESLint rules for TS",
"eslint-config-prettier": "Turn off ESLint rules that conflict with Prettier",
"eslint-plugin-prettier": "Run Prettier as ESLint rule (no need to run prettier command) and show errors as ESLint errors",
"ts-jest": "Run Jest directly on TS",
"@zerollup/ts-transform-paths": "Convert import path to relative in compiled files",
"ttypescript": "Required for ts-transform-paths",
"pinst": "Workaround husky 'npm postinstall' problem when 'npm publish'",
"syncyarnlock": "Sync yarn.lock to package.json after 'yarn upgrade'"
}
}