-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "esquina",
"version": "0.0.1",
"description": "esquina latina website",
"main": "build.js",
"scripts": {
"jade": "jade src/jade/index.jade --out docs/",
"less": "lessc src/less/style.less docs/css/style.css",
"copy": "npm run copy:css && npm run copy:js && npm run copy:img",
"copy:css": "cp -r src/css docs/",
"copy:js": "cp -r src/js docs/",
"copy:img": "cp -r src/img docs/",
"build": "npm run jade && npm run less && npm run copy",
"watch": "npm-scripts-watcher",
"dev": "npm run build && npm run watch"
},
"watch": {
"src/less/**/*.less": ["less"],
"src/jade/**/*.jade": ["jade"],
"src/js/**/*.js": ["copy:js"],
"src/img/**/*.{jpg,png,gif}": ["copy:img"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/fleidloff/esquina.git"
},
"author": "fleidloff",
"license": "MIT",
"bugs": {
"url": "https://github.com/fleidloff/esquina/issues"
},
"homepage": "https://github.com/fleidloff/esquina#readme",
"dependencies": {
"jade": "^1.11.0",
"less": "^2.7.1"
},
"devDependencies": {
"npm-scripts-watcher": "^1.0.2"
}
}