-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.85 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "slim-exp",
"version": "0.4.1",
"description": "Lightweight TypeScript expression parser for building expression trees from arrow functions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=16"
},
"files": [
"lib"
],
"scripts": {
"start:dev": "nodemon",
"build": "tsc",
"format": "prettier --write \"src/**/*.(ts|js)\"",
"lint": "eslint --ext .ts src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git tag v%npm_package_version%",
"postversion": "git push && git push --tags",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugMaker-237/slim-exp.git"
},
"keywords": [
"linq",
"expression",
"parser",
"typescript",
"ast",
"arrow-function"
],
"author": "bugmaker-237",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugMaker-237/slim-exp/issues"
},
"homepage": "https://github.com/bugMaker-237/slim-exp#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.19.43",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"jest": "^29.7.0",
"nodemon": "^3.1.14",
"prettier": "^3.9.6",
"rimraf": "^5.0.10",
"ts-jest": "^29.4.12",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
]
},
"testRegex": "(tests|specs).*\\.(test|spec)\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}