Spaces:
Sleeping
Sleeping
File size: 777 Bytes
2434dca |
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 |
{
"version": "0.9.0",
"name": "catharsis",
"description": "A JavaScript parser for Google Closure Compiler and JSDoc type expressions.",
"author": "Jeff Williams <jeffrey.l.williams@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/hegemonic/catharsis"
},
"bugs": "https://github.com/hegemonic/catharsis/issues",
"main": "catharsis.js",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"ajv": "^6.12.2",
"mocha": "^8.0.1",
"pegjs": "^0.10.0",
"should": "^13.2.3",
"should-equal": "^2.0.0"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"prepare": "./node_modules/pegjs/bin/pegjs ./lib/parser.pegjs",
"test": "./node_modules/mocha/bin/mocha"
},
"license": "MIT"
}
|