-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 1.87 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
{
"name": "coffee-lex",
"version": "0.0.0-development",
"description": "Stupid lexer for CoffeeScript.",
"keywords": [
"coffee",
"coffeescript",
"lex",
"parse"
],
"homepage": "https://github.com/decaffeinate/coffee-lex",
"bugs": {
"url": "https://github.com/decaffeinate/coffee-lex/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/decaffeinate/coffee-lex.git"
},
"license": "MIT",
"author": "Brian Donovan",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "pnpm lint --fix",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"reformat": "pnpm lint --fix",
"pretest": "pnpm lint",
"test": "jest",
"test:ci": "jest --ci"
},
"lint-staged": {
"*.{ts,md,json}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "14",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"decaffeinate-coffeescript": "1.12.7-patch.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "^28.1.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"sort-package-json": "^1.57.0",
"ts-jest": "^28.0.4",
"tsup": "^6.1.0",
"typescript": "^4.7.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}