-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.21 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@rudderstack/json-template-engine",
"version": "0.19.2",
"homepage": "https://github.com/rudderlabs/rudder-json-template-engine",
"description": "A library for evaluating JSON template expressions.",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"json",
"jsonpath",
"rudder",
"rudderstack",
"cdp",
"engine"
],
"author": "RudderStack",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rudderlabs/rudder-json-template-engine.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/jest": "^29.4.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"commander": "^10.0.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.23.0",
"glob": "^10.3.10",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^15.2.10",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vite": "^5.2.13"
},
"scripts": {
"test": "jest --coverage --verbose",
"build": "vite build && tsc",
"dev": "vite",
"clean": "rm -rf build",
"build:clean": "npm run clean && npm run build",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . || exit 1",
"format": "prettier --write '**/*.ts' '**/*.js' '**/*.json'",
"lint": "npm run format && npm run lint:fix",
"lint-staged": "lint-staged",
"prepare": "husky install",
"jest:scenarios": "jest e2e.test.ts --verbose",
"test:scenario": "jest test/scenario.test.ts --verbose",
"test:stryker": "stryker run",
"check:lint": "eslint . -f json -o reports/eslint.json || exit 0"
},
"lint-staged": {
"*.(ts|json)": "prettier --write"
},
"files": [
"build/**/*.[jt]s",
"CHANGELOG.md"
]
}