-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 KB
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
57
58
59
60
61
62
63
{
"name": "@bowlerjs/cli",
"description": "Command-line Bowler generator",
"version": "0.0.1",
"homepage": "https://github.com/bowlerjs/cli",
"main": "lib/",
"bin": {
"bowler": "./bin/bowler.js"
},
"keywords": [
"bowler"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bowlerjs/cli.git"
},
"author": {
"name": "Mikael Pettersson",
"email": "contact@bowler.io",
"url": "https://bowler.io"
},
"bugs": {
"url": "https://github.com/bowlerjs/cli/issues"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:pre": "npm version prerelease && npm publish --tag pre --access public",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"jest": "jest --no-cache",
"test": "npm run lint && npm run jest",
"lint": "semistandard --fix"
},
"directories": {
"lib": "lib"
},
"semistandard": {
"sourceType": "module",
"env": [
"jest"
]
},
"preferGlobal": true,
"dependencies": {
"commander": "^2.9.0",
"generator-bowler": "bowlerjs/generator-bowler#master",
"semver": "^5.3.0",
"update-notifier": "^2.3.0",
"yeoman-environment": "^2.0.0"
},
"devDependencies": {
"jest": "^22.0.4",
"lodash": "^4.6.1",
"mocha": "^4.0.0",
"semistandard": "^12.0.0"
}
}