-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "gallerya",
"version": "3.2.4",
"title": "gallerya",
"description": "gallerya is a WordPress plugin that allows you to create galleries.",
"author": "netzstrategen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/netzstrategen/wordpress-gallerya.git"
},
"license": "GPL-2.0",
"dependencies": {
"@netzstrategen/bacon": "^0.11.0",
"@netzstrategen/gulp-task-collection": "^4.1.4",
"babel-loader": "^9.1.0",
"normalize.css": "^8.0.1"
},
"scripts": {
"watch": "gulp",
"dev": "npm run watch",
"build": "gulp build:production"
},
"browserslist": [
"> 0.95%"
],
"gulpPaths": {
"destDir": "./dist",
"scripts": {
"srcDir": "./assets/scripts/",
"src": [
"./assets/scripts/**/*.js"
],
"dest": "./dist/scripts",
"options": {
"concat": false
}
},
"styles": {
"srcDir": "./assets/styles/",
"src": [
"./assets/styles/**/*.scss"
],
"dest": "./dist/styles",
"options": {
"concat": false
}
}
},
"volta": {
"node": "18.12.1",
"npm": "9.2.0"
}
}