-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "missingmaps",
"version": "0.2.0",
"type": "module",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/MissingMaps/missingmaps.github.io.git"
},
"author": {
"name": "Missing Maps",
"url": "https://www.missingmaps.org"
},
"license": "BSD-3-Clause",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/MissingMaps/missingmaps.github.io/issues"
},
"homepage": "https://www.missingmaps.org",
"scripts": {
"postinstall": "[ -f _config-dev.yml ] || echo 'domain: http://localhost:3000\npath_prefix:' > _config-dev.yml",
"serve": "gulp serve",
"serve:stable": "gulp serve_stable",
"build": "gulp prod",
"build:dev": "gulp serve",
"lint": "eslint app/assets/scripts/**/*.js updatedep.js",
"lint:fix": "eslint app/assets/scripts/**/*.js updatedep.js --fix",
"test": "npm run lint && npm run build",
"clean": "gulp clean"
},
"browserify": {
"transform": [
"babelify",
"require-globify",
"envify"
]
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"async": "^3.2.6",
"browser-sync": "^3.0.4",
"chai": "^6.2.0",
"colors": "^1.4.0",
"del": "^8.0.1",
"foundation-sites": "^6.9.0",
"glob": "^11.0.3",
"gulp": "^5.0.1",
"gulp-autoprefixer": "^10.0.0",
"gulp-concat": "^2.6.1",
"gulp-git": "^2.10.0",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^6.0.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^6.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"md-to-pdf": "^5.2.4",
"node-fetch": "^3.3.2",
"sass": "^1.77.8"
}
}