-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 847 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 847 Bytes
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
{
"name": "ssdev",
"version": "2.2.0",
"description": "docker-based devenv manager for silverstripe projects using npx",
"main": "index.js",
"scripts": {
"test": "jest",
"preversion": "git fetch",
"version": "git-chglog -o CHANGELOG.md --next-tag $npm_config_next && git add -A",
"postversion": "git add -A",
"release": "[[ ! -z $npm_config_next ]] && npm version $npm_config_next --git-tag-version=false"
},
"keywords": [
"npx",
"silverstripe",
"docker"
],
"bin": "./cli.js",
"author": "Matthias Leutenegger",
"license": "BSD-3-Clause",
"dependencies": {
"docker-compose": "^0.24.1",
"tmp": "^0.2.1",
"yaml": "^2.1.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@syntro-opensource/eslint-config-base": "^1.0.2",
"eslint": "^8.15.0",
"jest": "^29.4.3"
}
}