-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 2.03 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
{
"name": "wbounce",
"version": "1.0.0",
"description": "wBounce by [Kevin Weber](http://kevinw.de)",
"main": "_build-tools/index.js",
"scripts": {
"build:js:frontend": "uglifyjs frontend/js/*.js -o frontend/js/min/wbounce.min.js --compress --mangle",
"watch:js:frontend": "nodemon -e js -w js/ -i frontend/js/min/ -x \"npm run build:js:frontend\"",
"build:scss:frontend-base": "sass frontend/css/base.scss:frontend/css/min/wbounce-base.min.css --sourcemap=none --style=compressed",
"build:scss:frontend": "sass frontend/css/all.scss:frontend/css/min/wbounce-all.min.css --sourcemap=none --style=compressed",
"build:scss:admin": "sass admin/css/edit-page.scss:admin/css/min/edit-page.min.css --sourcemap=none --style=compressed",
"watch:scss:frontend-base": "sass --watch frontend/css/base.scss:frontend/css/min/wbounce-base.min.css --sourcemap=none --style=compressed",
"watch:scss:frontend": "sass --watch frontend/css/all.scss:frontend/css/min/wbounce-all.min.css --sourcemap=none --style=compressed",
"watch:scss:admin": "sass --watch admin/css/edit-page.scss:admin/css/min/edit-page.min.css --sourcemap=none --style=compressed",
"prewatch": "sh _build-tools/sass.sh",
"prebuild": "sh _build-tools/sass.sh",
"watch": "npm-run-all --parallel watch:**",
"build": "npm-run-all build:**",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinweber/wbounce.git"
},
"keywords": [
"newsletter",
"exit",
"popup",
"exit",
"popups",
"roi",
"conversion",
"piwik",
"google",
"analytics",
"rate",
"optimisation",
"free",
"plugin",
"wordpress",
"marketing",
"landing",
"page"
],
"author": "Kevin Weber",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinweber/wbounce/issues"
},
"homepage": "https://github.com/kevinweber/wbounce#readme",
"dependencies": {
"nodemon": "^1.19.1",
"npm-run-all": "^3.1.0",
"uglify-js": "^2.7.3"
}
}