-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "@aradzie/chatterbox",
"version": "0.1.0",
"description": "Generates text based on a context-free grammar",
"author": "Aliaksandr Radzivanovich",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/aradzie/chatterbox.git"
},
"bugs": {
"url": "https://github.com/aradzie/chatterbox/issues"
},
"homepage": "https://github.com/aradzie/chatterbox",
"keywords": [
"context-free grammar",
"context-free",
"grammar",
"langauge generator",
"generator",
"lorem ipsum",
"lorem",
"ipsum"
],
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rm -fr lib",
"precompile": "peggy --format es -o src/grammar/parser.js src/grammar/parser.peggy",
"compile": "tsc",
"test": "ava",
"format": "prettier --write 'src/**/*'",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix"
},
"dependencies": {},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"ava": "^5.1.0",
"eslint": "^8.31.0",
"eslint-plugin-ava": "^13.2.0",
"peggy": "^2.0.1",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
}
}