-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "downlink",
"version": "0.0.5",
"description": "A TypeScript module for converting JSON data (strings) into TypeScript interfaces.",
"main": "./dist/index.js",
"scripts": {
"start": "ts-node ./src/ts/index.ts",
"build": "tsc",
"lint": "./node_modules/.bin/eslint src/ts --ext .ts",
"prettier": "prettier --config .prettierrc.js --write **/*.ts",
"pretty-quick": "pretty-quick",
"clean": "rm -rf ./dist/**",
"badges": "jest-coverage-badges --output ./badges",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelZalla/downlink.git"
},
"files": [
"dist/index.js",
"dist/convert/**.js"
],
"keywords": [
"typescript",
"json",
"interface",
"convert"
],
"author": "Michael Zalla <michael@zalla.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichaelZalla/downlink/issues"
},
"homepage": "https://github.com/MichaelZalla/downlink#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-coverage-badges": "^1.1.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"typescript-eslint": "^0.0.1-alpha.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}