-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "@robbiemu/handy-typescript",
"version": "4.9.8",
"description": "a collection of tools I use in typescript",
"author": "Robert Collins <[email protected]>",
"license": "MIT",
"repository": "git://github.com/robbiemu/handy-typescript.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build && husky install",
"build": "make",
"pretest": "jest --clearCache",
"test": "jest",
"doc": "typedoc",
"postdoc": "cp _config.yml docs/ && git add -A docs",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"lint-staged": "lint-staged"
},
"keywords": [
"typescript"
],
"dependencies": {
"md5": "^2.3.0",
"priorityqueue": "^1.0.0",
"rxjs": "^6.6.7"
},
"peerDependencies": {
"ts-transformer-keys": "^0.4.4",
"ttypescript": "^1.5.15",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-transformer-keys": "^0.4.4",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^3.14.1",
"ttypescript": "^1.5.15",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"files": [
"/dist"
]
}