-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "tricialea.ch",
"version": "1.0.0",
"description": "Tricia Leach's portfolio",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "run-p sass js fonts images content watch",
"sass": "node-sass src/scss/styles.scss dist/assets/styles/main.css",
"fonts": "cp -r src/assets/fonts dist/assets",
"images": "cp -r src/assets/img dist",
"content": "cp -rv src/content/* dist",
"js": "cp -rv src/js/* dist/assets/js",
"watch": "rerun-script",
"test": "echo \"Error: no test specified\" && exit 1"
},
"watches": {
"content": [
"src/content/**/*.html",
"src/content/**/*.php"
],
"sass": [
"src/scss/**/*.scss"
],
"js": [
"src/js/**/*.js"
],
"img": [
"src/assets/img/**/*.*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tricialeach/tricialea.ch.git"
},
"author": "Tricia Leach",
"license": "ISC",
"bugs": {
"url": "https://github.com/tricialeach/tricialea.ch/issues"
},
"homepage": "https://github.com/tricialeach/tricialea.ch#readme",
"devDependencies": {
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.11.0",
"rerun-script": "^0.6.0"
}
}