1 | {
|
2 | "port": 3000,
|
3 | "dev": ".",
|
4 | "styles": {
|
5 | "dest": "css"
|
6 | },
|
7 | "modules": {
|
8 | "main.js": "main.js"
|
9 | },
|
10 | "html": "index.html",
|
11 | "production": {
|
12 | "dest": "build/",
|
13 | "scripts": [
|
14 | "js/*.js"
|
15 | ],
|
16 | "static": [
|
17 | "index.html",
|
18 | "img/*",
|
19 | "font/*",
|
20 | "config.js",
|
21 | "favicon.ico"
|
22 | ],
|
23 | "styles": [
|
24 | "css/*.css"
|
25 | ],
|
26 | "tests": [
|
27 | "tests/**/test-*.js",
|
28 | "!**/node_modules/**"
|
29 | ]
|
30 | },
|
31 | "lint": [
|
32 | "*.js",
|
33 | "modules/**/*.js",
|
34 | "apps/**/*.js",
|
35 | "tasks/**/*.js",
|
36 | "!**/node_modules/**"
|
37 | ],
|
38 | "tests": [
|
39 | "tests/**/test-*.js",
|
40 | "!**/node_modules/**"
|
41 | ],
|
42 | "units": [
|
43 | "apps/**/test-*.js",
|
44 | "modules/**/test-*.js",
|
45 | "!**/node_modules/**"
|
46 | ]
|
47 | }
|