-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
54
55
56
{
"name": "@neo4j/practicle",
"version": "0.1.7",
"description": "the pr-activated-changelog-emitter - Generate a changelog from PR:s in a Github repo",
"repository": {
"type": "git",
"url": "https://github.com/neo4j-apps/practicle.git"
},
"homepage": "https://github.com/neo4j-apps/practicle",
"keywords": [
"pull request",
"changelog",
"release notes"
],
"bin": {
"practicle": "lib/index.js"
},
"scripts": {
"build": "babel src -d lib --ignore '**/*.test.js'",
"dev": "jest src --watchAll",
"test": "jest src",
"precommit": "lint-staged"
},
"testEnvironment": "node",
"lint-staged": {
"*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=8"
},
"author": "Neo4j Inc.",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.4.2",
"babel-plugin-shebang": "^0.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^7.2.0",
"prettier": "^1.14.0",
"yarn": "^1.9.4"
},
"dependencies": {
"@octokit/rest": "^15.9.5",
"babel-runtime": "^6.26.0",
"semver": "^5.5.1",
"semver-compare": "^1.0.0",
"semver-sort": "^0.0.4",
"yargs": "^12.0.1"
}
}