forked from adobe/reactor-turbine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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
77
78
{
"name": "@adobe/reactor-turbine",
"version": "27.5.0",
"description": "Tags rule engine which processes rules on client websites and delegates logic to extensions.",
"license": "Apache-2.0",
"scripts": {
"build": "npm run clean && rollup -c && npm run minify",
"build:watch": "npm run clean && rollup --watch -c",
"clean": "rm -rf dist",
"format": "pretty-quick",
"minify": "uglifyjs dist/engine.js -c -m -o dist/engine.min.js",
"prepublishOnly": "npm run build",
"test": "karma start",
"test:watch": "karma start --no-single-run --no-coverage",
"lint": "eslint 'src/**/*.js' 'coreModulePackages/**/*.js'"
},
"author": {
"name": "Adobe Systems",
"url": "http://adobe.com",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:adobe/reactor-turbine.git"
},
"dependencies": {
"@adobe/reactor-cookie": "*",
"@adobe/reactor-document": "*",
"@adobe/reactor-load-script": "*",
"@adobe/reactor-object-assign": "*",
"@adobe/reactor-promise": "*",
"@adobe/reactor-query-string": "*",
"@adobe/reactor-window": "*",
"is-plain-object": "^2.0.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"camelize": "1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.3.7",
"inject-loader": "^4.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.5.0",
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^3.1.1",
"karma-jasmine-matchers": "^4.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"karma-webpack": "^5.0.0",
"kebab-case": "1.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"rollup": "^2.36.1",
"uglify-js": "^3.9.4",
"webpack": "^5.73.0",
"yargs": "^15.3.1"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"lint-staged": {
"(src/**/*.js|coreModulePackages/**/*.js)": [
"npm run lint -- --fix"
]
},
"engines": {
"node": ">=v14.21.2"
}
}