-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.74 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
{
"name": "cookiefox",
"version": "1.0.0",
"description": "",
"main": "assets/js/main.js",
"dependencies": {
"core-js": "3",
"focus-trap": "^6.7.3",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.8",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"autoprefixer": "^10.4.4",
"bestzip": "^2.2.0",
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-csso": "^6.0.0",
"rollup": "^2.70.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.10",
"svelte": "^3.46.6",
"svelte-preprocess": "^4.10.4"
},
"scripts": {
"build": "npm-run-all --parallel \"build:*\"",
"build:legacy": "env ROLLUP_BUILD_TYPE=\"legacy\" rollup -c",
"build:modern": "env ROLLUP_BUILD_TYPE=\"modern\" rollup -c",
"watch": "rollup -w -c",
"release:zip": "bestzip release/zip/cookiefox.zip assets/* cookiefox.php includes/* vendor/* languages/* readme.txt wpml-config.xml",
"release": "copyfiles './assets/**/*' ./cookiefox.php './includes/**/*' './vendor/**/*' 'languages/**/*' ./readme.txt ./wpml-config.xml release/files/cookiefox",
"release:test": "copyfiles './assets/**/*' ./cookiefox.php './includes/**/*' './vendor/**/*' 'languages/**/*' ./readme.txt ./wpml-config.xml /Users/fabianpimminger/Development/web/cmp-test/wp-content/plugins/cookiefox"
},
"author": "",
"license": "ISC"
}