-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 870 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 870 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
28
29
30
31
32
{
"name": "mephistools-template",
"version": "1.0.0",
"description": "A template repository to make it easy to create new mephistools repo",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"pretest": "npm run lint && require-self",
"prepare": "npm install require-self && require-self",
"lint": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mephistools/mephistools-template.git"
},
"keywords": [
"mephistools",
"template"
],
"author": "Louis Beaumont",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mephistools/mephistools-template/issues"
},
"homepage": "https://github.com/Mephistools/mephistools-template#readme",
"devDependencies": {
"jest": "^26.1.0",
"require-self": "^0.2.3",
"standard": "^14.3.4"
}
}