-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1.2 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
{
"name": "adminonsteroids",
"version": "1.4.3",
"description": "Various ProcessWire admin tweaks to boost productivity",
"main": "index.js",
"devDependencies": {
"lodash": ">=4.17.13",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"uglify-js": "*"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sass": "node-sass -q --source-map true --output-style compressed src/aos.scss styles/aos.min.css && node-sass -q --source-map true --output-style compressed src/aos_config.scss styles/aos_config.min.css",
"minify": "uglifyjs src/aos.js -c -o scripts/aos.min.js && uglifyjs src/aos_config.js -c -o scripts/aos_config.min.js",
"start": "npm run sass && npm run minify",
"watch": "nodemon -q --watch src -e scss,js -x \"npm run start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rolandtoth/AdminOnSteroids.git"
},
"keywords": [
"processwire",
"module"
],
"author": "Roland Toth",
"license": "MIT",
"bugs": {
"url": "https://github.com/rolandtoth/AdminOnSteroids/issues"
},
"homepage": "https://github.com/rolandtoth/AdminOnSteroids#readme",
"dependencies": {
"node-minify": "^2.3.0"
}
}