-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
52
53
54
55
{
"name": "astronomical",
"version": "1.0.1",
"description": "offers a way to query a Javascript AST to find specific patterns using a syntax somewhat similar to XPath.",
"scripts": {
"lint": "eslint . --ext .ts --fix --ignore-path .gitignore",
"typecheck": "tsc --noEmit",
"clean": "rm -rf lib && mkdir lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"watch": "tsc --watch",
"check": "npm run lint && npm run typecheck",
"dev": "tsc --watch",
"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": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"meriyah": "^6.0.3"
},
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js"
}