-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 782 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 782 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
{
"name": "testing-things",
"private": true,
"version": "2.0.0",
"description": "Testing things!",
"scripts": {
"prepare": "husky install",
"format": "npx prettier --write --ignore-unknown \"**/*\""
},
"repository": "git://github.com/Virtual-Coffee/Testing-Things.git",
"author": "Virtual Coffee <hello@virtualcoffee.io> (https://virtualcoffee.io/)",
"license": "CC-BY-3.0",
"bugs": {
"url": "https://github.com/Virtual-Coffee/Testing-Things/issues"
},
"homepage": "https://github.com/Virtual-Coffee/Testing-Things#readme",
"devDependencies": {
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"prettier": "2.4.1"
},
"dependencies": {},
"main": "index.js",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}