-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "gud-type",
"version": "1.0.4",
"description": "A utility for generating type scales.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint \"./src/**/*.?(js|ts)\"",
"format": "prettier --write \"src/**/*.?(js|ts)\"",
"format-check": "prettier --check \"src/**/*.?(js|ts)\"",
"test": "jest",
"prepare": "npm run build",
"preversion": "npm run lint && npm run test",
"postversion": "git push && git push --tags"
},
"keywords": [],
"author": "@ryegoree (https://twitter.com/ryegoree)",
"homepage": "https://github.com/ryangoree/GudType",
"repository": {
"type": "git",
"url": "https://github.com/ryangoree/GudType"
},
"bugs": {
"url": "https://github.com/ryangoree/GudType/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}