-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.26 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
{
"name": "@adobe/aep-rules-engine",
"version": "3.1.1",
"description": "Adobe Experience Platform rules engine.",
"repository": {
"type": "git",
"url": "https://github.com/adobe/aepsdk-rulesengine-typescript.git"
},
"type": "module",
"module": "dist/es/index.js",
"main": "dist/cjs/index.cjs",
"types": "types/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./types/index.d.ts",
"import": "./dist/es/index.js",
"default": "./dist/cjs/index.cjs"
}
},
"files": [
"dist/*",
"types/*",
"src/**/!(*.spec).ts"
],
"scripts": {
"add-license": "node tools/add-license.js",
"emit-declaration": "tsc --lib dom,es2021 --emitDeclarationOnly --declaration --declarationDir ./types src/**/*.ts",
"prebuild": "npm run clean && npm run lint && npm run emit-declaration",
"build": "rollup -c",
"clean": "rimraf dist types",
"format": "prettier --write \"{src,test}/**/*.{js,cjs,mjs,ts}\" \"**/*.md\"",
"prelint": "npm run format && npm run add-license",
"lint": "./node_modules/.bin/eslint && tsc",
"prepare": "husky",
"pretty-quick": "pretty-quick",
"test": "vitest run --coverage"
},
"author": "Adobe",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.27.3",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.27.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@vitest/eslint-plugin": "^1.2.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.2.0",
"handlebars": "^4.7.8",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"rimraf": "^6.0.1",
"rollup": "^4.41.1",
"rollup-plugin-cleanup": "^3.2.1",
"staged-git-files": "^1.3.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
},
"overrides": {
"eslint": "^9.27.0"
},
"dependencies": {
"@vitest/coverage-v8": "^3.1.4"
}
}