-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.7 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
{
"name": "@adobe/reactor-turbine-edge",
"version": "3.0.1",
"description": "Rule engine that processes rules on Adobe Experience Platform Edge Network and delegates logic to extensions.",
"license": "Apache-2.0",
"main": "dist/engine-server.min.js",
"scripts": {
"build": "rollup -c && terser dist/engine-server.js -c -m -o dist/engine-server.min.js",
"build:watch": "touch ./dist/engine-server.js & rollup --watch -c & watch -f ./dist/engine-server.js -r './node_modules/.bin/terser ./dist/engine-server.js -c -m -o ./dist/engine-server.min.js'",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"author": {
"name": "Adobe Systems",
"url": "http://adobe.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:adobe/reactor-turbine-edge.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^6.4.2",
"camelize": "1.0.1",
"cli-watch": "^1.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest-dom": "^5.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.0.11",
"inject-loader": "^4.0.1",
"jest": "^29.7.0",
"jest-runner-eslint": "^2.2.0",
"kebab-case": "1.0.2",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"prettier": "^3.2.5",
"proxyquire": "^2.1.3",
"rollup": "^4.13.0",
"terser": "^5.29.2"
}
}