-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.73 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.73 KB
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
{
"name": "ez",
"version": "1.0.2",
"description": "Customized npm script used as a slim front-end web development tool task runner comparable with Gulp or Grunt.",
"main": "index.html",
"scripts": {
"lint": "eslint src/js/*.js",
"autoprefixer": "postcss -u autoprefixer --autoprefixer.browsers '> 5%, ie 9' -r 'dest/assets/css/*.css' '!dest/assets/css/*.map'",
"build:html": "cp src/*.html dest/",
"build:js": "cp src/js/* dest/assets/js/script.js",
"build:css": "sass --style=compressed src/scss/styles.scss dest/assets/css/styles.css && npm run autoprefixer",
"prebuild": "npm run lint",
"build": "npm run build:html && npm run build:css && npm run build:js",
"watch:js": "onchange 'src/js/**/*.js' -- run-s build:js",
"watch:css": "onchange 'src/scss/**/*.scss' -- run-s build:css",
"watch:html": "onchange 'src/**/*.html' -- run-s build:html",
"watch": "run-p watch:html watch:js watch:css",
"serve": "lite-server --files 'dest/**/*'",
"start": "npm run build && npm run watch & npm run serve"
},
"author": "Frieder Jan Moerman @hardcodepunk",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^7.2.6",
"browserify": "^14.5.0",
"eslint": "^4.19.1",
"lite-server": "^2.5.4",
"npm": "^6.13.4",
"npm-run-all": "^4.1.5",
"onchange": "^6.0.0",
"postcss-cli": "^8.3.1",
"uglify-es": "^3.3.9",
"uglify-js": "^3.6.0"
},
"dependencies": {
"cached-path-relative": "^1.0.2",
"debug": "^4.1.1",
"event-stream": "^3.3.5",
"lodash": "^4.17.15",
"lodash.mergewith": "^4.6.2",
"postcss": "^8.3.0",
"sass": "^1.77.8",
"sshpk": "^1.16.1",
"tiny-slider": "^2.9.4",
"tough-cookie": "^2.5.0",
"upgrade": "^1.1.0"
}
}