-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.04 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
{
"version": "0.10.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.17.21"
},
"devDependencies": {
"@jsdoc/eslint-config": "^2.0.1",
"@jsdoc/prettier-config": "^0.2.9",
"@jsdoc/test-matchers": "^0.2.6",
"ajv": "^8.17.1",
"eslint": "^9.17.0",
"execa": "^9.5.2",
"hereby": "^1.10.0",
"jasmine": "^5.5.0",
"jasmine-console-reporter": "^3.1.0",
"peggy": "^4.2.0",
"prettier": "^3.4.2"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "npx peggy ./lib/parser.pegjs",
"default": "npx hereby lint-and-test",
"format": "npx hereby format",
"lint": "npx hereby lint",
"test": "npx hereby test"
},
"license": "MIT"
}