-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "formideploy",
"version": "0.4.2",
"description": "Deployment tools for formidable.com websites",
"main": "index.js",
"repository": "https://github.com/FormidableLabs/formideploy",
"author": "Ryan Roemer <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"formideploy": "bin/formideploy.js"
},
"scripts": {
"preversion": "yarn run check",
"build:toc": "doctoc --github --notitle --maxlevel 4 README.md",
"build": "yarn build:toc",
"lint": "eslint .",
"test": "mocha",
"check": "yarn lint && yarn test"
},
"dependencies": {
"@octokit/rest": "^17.8.0",
"chalk": "^4.0.0",
"execa": "^4.0.1",
"filesize": "^6.1.0",
"markdown-table": "^2.0.0",
"serve-handler": "^6.1.2",
"strip-ansi": "^6.0.0",
"surge": "^0.21.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"doctoc": "^1.4.0",
"eslint": "^7.0.0",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^7.2.0"
}
}