-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "astronomical",
"version": "3.0.3",
"type": "commonjs",
"description": "offers a way to query a Javascript AST to find specific patterns using a syntax somewhat similar to XPath.",
"sideEffects": false,
"scripts": {
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit",
"build": "tsup",
"watch": "tsup --watch",
"check": "npm run lint && npm run typecheck",
"testWatch": "jest --watchAll",
"test": "jest --ci",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/RetireJS/ASTronomical.git"
},
"author": "Erlend Oftedal <erlend@oftedal.no>",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"tsup": "^8.5.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"meriyah": "^6.0.3"
},
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"types": "./lib/index.d.ts",
"main": "./lib/index.js"
}