-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "@playpickup/kickoff",
"version": "1.0.0",
"description": "Kickoff is a (pretty) un-opinionated starting point for Node/Express/React projects",
"main": "index.js",
"repository": "git@github.com:PlayPickup/kickoff.git",
"author": "Eric Stout <eric@playpickup.com>",
"license": "MIT",
"private": false,
"bin": {
"kickoff": "./bin/cli.js"
},
"scripts": {
"format": "prettier \"./bin/**/*\" --write",
"test": "yarn test:lint && yarn test:format",
"test:format": "prettier \"./bin/**/*\" --check",
"test:lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"prettier": "^2.3.2",
"semantic-release": "^17.4.5"
}
}