forked from bozdoz/wp-plugin-leaflet-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "wp-plugin-leaflet-map",
"private": true,
"version": "3.0.5",
"description": "Leaflet Map WordPress Plugin",
"scripts": {
"start": "docker-compose up && exit 0",
"restart": "npm run destroy && npm start",
"destroy": "docker-compose down -v",
"wordpress": "docker-compose run wordpress bash",
"cli": "docker-compose run cli sh",
"translate": "cd ./languages && sudo php ../../wp-trunk/tools/i18n/makepot.php wp-plugin ../",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bozdoz/wp-plugin-leaflet-map.git"
},
"author": "Benjamin J DeLong <[email protected]> (https://bozdoz.com)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/bozdoz/wp-plugin-leaflet-map/issues"
},
"homepage": "https://github.com/bozdoz/wp-plugin-leaflet-map#readme",
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"jest": "^27.0.5",
"prettier": "^2.3.2"
}
}