-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"bin": {
"hypertest-compiler": "jdeploy-bundle/jdeploy.js"
},
"author": "Tomasz Pluskiewicz <[email protected]>",
"description": "",
"preferGlobal": true,
"repository": "https://github.com/hypermedia-app/hypertest",
"version": "0.8.2",
"jdeploy": {
"jar": "app.hypermedia.testing.dsl.cli/target/app.hypermedia.testing.dsl.cli-1.0.0-SNAPSHOT-shaded.jar"
},
"dependencies": {
"shelljs": "^0.7.5"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"standard-version": "^6.0.1",
"husky": "^1.0.0",
"vuepress": "^1.0.2",
"lint-staged": "^8.0.0"
},
"license": "MIT",
"name": "@hydrofoil/hypertest",
"files": [
"jdeploy-bundle"
],
"scripts": {
"release": "standard-version",
"docs:start": "vuepress dev docs",
"docs:build": "vuepress build docs",
"jdeploy": "mvn clean package; jdeploy publish"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.xtend": [
"mvn editorconfg:format",
"git add"
]
}
}