-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
65 lines (65 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
{
"name": "trool",
"version": "3.0.3",
"description": "a spreadsheet rule engine for NodeJS/TypeScript",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"directories": {
"dist": "dist"
},
"scripts": {
"clean-install": "rm -rf ./node_modules && rm -r package-lock.json && npm i",
"lint": "eslint --flag unstable_ts_config",
"build": "rm -rf ./dist/ && tsc -p tsconfig.build.json",
"pre-publish": "mv README.md README-git && mv README-npm README.md",
"post-publish": "mv README.md README-npm && mv README-git README.md",
"test": "vitest",
"test:visitors": "ts-node ./test/VisitorRules/playground.ts",
"test:nightclub": "ts-node ./test/NightClubRules/playground.ts"
},
"dependencies": {
"csvtojson": "^2.0.10",
"jet-logger": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.1",
"eslint": "^9.11.1",
"eslint-plugin-n": "^17.10.3",
"jiti": "^2.3.3",
"npm": "^10.9.0",
"rollup": "^4.24.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanpmaxwell/Trool.git"
},
"keywords": [
"rule",
"engine",
"drool",
"typescript",
"nodejs",
"trool",
"csv",
"spreadsheet",
"node",
"ts",
"rule-engine"
],
"author": "sean maxwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanpmaxwell/Trool/issues"
},
"homepage": "https://github.com/seanpmaxwell/Trool#readme"
}