-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "codex",
"version": "2023.9.20-19.35.25",
"license": "UNLICENSED",
"homepage": "https://codepen.io/terned/pen/abPpgML/8f89cc3347d24adf4bbafda7f964e8e1",
"scripts": {
"build": "gulp -f ./build/gulpfile.js --cwd ./ --continue",
"serve": "gulp serve -f ./build/gulpfile.js --cwd ./ --continue",
"task": "gulp -f ./build/gulpfile.js --cwd ./ --continue",
"tasks": "gulp --tasks-simple -f ./build/gulpfile.js --cwd ./ --continue",
"v": "node -v"
},
"config": {
"srcDir": "src/",
"distDir": "dist/"
},
"engines": {
"npm": "~12.18.0"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"del": "^4.1.1",
"glob": "^7.1.4",
"gulp-inject-partials": "^1.0.5",
"gulp-rename": "^1.4.0",
"gulp": "^4.0.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack": "^4.29.6",
"gulp-sass": "^4.0.2",
"node-sass": "^4.12.0"
},
"browserslist": [
"last 5 version"
],
"tasks": {
"partials": {
"order": 999,
"src": [
"**/*.template.html"
],
"pipe": [
{
"require": "gulp-inject-partials",
"args": [
{
"removeTags": true,
"quiet": true,
"ignoreError": true
}
]
}
],
"rename": {
"find": ".template",
"replace": ""
},
"cleanup": [
"**/*.partial.html",
"**/*.template.html"
]
},
"sass": {
"src": [
"**/*.sass",
"**/*.scss"
],
"pipe": [
{
"require": "gulp-sass"
}
],
"cleanup": true
}
},
"description": "A Pen created on CodePen.io. Original URL: [https://codepen.io/terned/pen/abPpgML/8f89cc3347d24adf4bbafda7f964e8e1](https://codepen.io/terned/pen/abPpgML/8f89cc3347d24adf4bbafda7f964e8e1).",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/harvardartmuseums/codex.git"
},
"author": "Catherine Maldonado",
"bugs": {
"url": "https://github.com/harvardartmuseums/codex/issues"
}
}