-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@cornjs/parser",
"author": {
"email": "mail@jstanger.dev",
"name": "Jake Stanger",
"url": "https://github.com/jakestanger"
},
"files": [
"dist"
],
"version": "0.11.1",
"description": " Native Typescript Corn parser",
"homepage": "https://cornlang.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jakestanger/corn.git"
},
"bugs": {
"url": "https://github.com/jakestanger/corn/issues"
},
"keywords": ["corn", "config", "parser", "language", "typescript"],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src",
"test": "jest"
},
"dependencies": {
"dedent": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.32.0",
"@types/jest": "^30.0.0",
"@types/node": "22.13.14",
"babel-jest": "^30.0.5",
"eslint": "^9.32.0",
"glob": "^13.0.0",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.38.0"
},
"volta": {
"node": "22.17.1"
}
}