-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
{
"version": "0.11.0",
"name": "catharsis",
"description": "A JavaScript parser for Google Closure Compiler and JSDoc type expressions.",
"author": "Jeff Williams <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/hegemonic/catharsis.git"
},
"bugs": "https://github.com/hegemonic/catharsis/issues",
"main": "catharsis.js",
"dependencies": {
"lodash": "^4.18.1"
},
"devDependencies": {
"@jsdoc/eslint-config": "^3.0.2",
"@jsdoc/prettier-config": "^0.2.12",
"@jsdoc/test-matchers": "^0.2.9",
"ajv": "^8.18.0",
"eslint": "^10.2.0",
"execa": "^9.6.1",
"hereby": "^1.14.0",
"jasmine": "^6.1.0",
"jasmine-console-reporter": "^3.1.0",
"license-check-and-add": "^4.0.5",
"peggy": "^5.1.0",
"prettier": "^3.8.1"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "npx peggy ./lib/parser.pegjs",
"default": "npx hereby lint-and-test",
"format": "npx hereby format",
"license-headers": "npx hereby license-headers",
"lint": "npx hereby lint",
"test": "npx hereby test"
},
"license": "MIT"
}