-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "pushdown-automaton",
"version": "1.2.1",
"description": "A library that allows you to create a deterministic pushdown automaton",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"build": "npm run build:compile && npm run build:fix",
"build:fix": "fix-esm-import-path out/*.js",
"build:compile": "tsc",
"build:clean": "rm -rf out",
"test": "jest --coverage",
"lint": "eslint 'src/**/*.ts'",
"fix-lint": "eslint 'src/**/*.ts' --fix",
"prepare": "husky",
"develop": "npx tsc --watch --outDir out/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aneshodza/pushdown-automaton.git"
},
"keywords": [
"automata",
"pushdown automata",
"deterministic pushdown automata"
],
"files": [
"out/**/*"
],
"author": "aneshodza",
"license": "MIT",
"bugs": {
"url": "https://github.com/aneshodza/pushdown-automaton/issues"
},
"homepage": "https://github.com/aneshodza/pushdown-automaton#readme",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.3",
"fix-esm-import-path": "^1.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.6.0"
}
}