-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 987 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 987 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "create-tangible",
"version": "0.2.1",
"description": "A command-line tool to quickly set up new projects based on templates",
"type": "module",
"homepage": "https://github.com/tangibleinc/create",
"repository": {
"type": "git",
"url": "git+https://github.com/tangibleinc/create.git"
},
"main": "index.js",
"bin": {
"create-tangible": "run"
},
"scripts": {
"start": "node index.js",
"test": "node tests/index.js",
"release": "npm publish --access public"
},
"files": [
"*.js",
"example-plugin",
"example-theme",
"run",
"site-roller",
"site-wp-docker",
"site-wp-now",
"license.txt",
"package.json",
"readme.md"
],
"dependencies": {
"@inquirer/prompts": "^7.5.0",
"case": "^1.6.3",
"fs-extra": "^11.3.0",
"globby": "^14.1.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@tangible/git-subrepo": "^1.0.1",
"testra": "^2.1.5"
},
"license": "MIT"
}