-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@fmfi-uk-1-ain-412/js-fol-parser",
"version": "0.8.1",
"description": "A JavaScript parser for first-order logic languages",
"repository": "https://github.com/FMFI-UK-1-AIN-412/js-fol-parser",
"files": [
"dist/**"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"author": {
"name": "Milan Cifra"
},
"contributors": [
{
"name": "Ján Kľuka",
"email": "jan.kluka@fmph.uniba.sk"
},
{
"name": "Nikola Kulíková",
"email": "kulikova16@uniba.sk"
},
{
"name": "Alena Kuklicová",
"email": "kuklicova3@uniba.sk"
}
],
"maintainers": [
{
"name": "Ján Kľuka",
"email": "jan.kluka@fmph.uniba.sk"
}
],
"license": "ISC",
"scripts": {
"build:parser": "node scripts/build-parser.js",
"build:module": "vite build && cpy src/index.d.ts dist/index.d.ts",
"build": "npm run build:parser && npm run build:module",
"lint": "npx kcd-scripts lint",
"test": "npx kcd-scripts test",
"prepublishOnly": "npm run build && npx kcd-scripts test --all=true --watch=false"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.0",
"@babel/preset-env": "^7.13.0",
"@babel/preset-typescript": "^7.13.0",
"cpy-cli": "^7.0.0",
"cross-spawn": "^7.0.0",
"jest-chance": "^0.1.8",
"kcd-scripts": "^4.1.0",
"peggy": "^5.0.6",
"typescript": "^4.2.0",
"vite": "^7.3.1"
},
"dependencies": {
"@babel/runtime": "^7.13.0"
}
}