-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
84 lines (84 loc) · 2.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "blueprint",
"displayName": "Blueprint - New Files and Folders of Files from Templates",
"description": "Easily create files and folder of files from templates in Visual Studio Code",
"version": "3.0.1",
"publisher": "teamchilla",
"license": "MIT",
"engines": {
"vscode": "^1.26.0"
},
"icon": "icon_128_128.png",
"galleryBanner": {
"color": "#fafafa",
"theme": "light"
},
"categories": [
"Other"
],
"repository": "https://github.com/reesemclean/blueprint",
"bugs": {
"url": "https://github.com/reesemclean/blueprint/issues"
},
"activationEvents": [
"onCommand:extension.blueprint"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.blueprint",
"title": "New File from Template"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.blueprint",
"title": "New File from Template",
"group": "navigation"
}
]
},
"configuration": {
"type": "object",
"title": "Blueprint Configuration",
"properties": {
"blueprint.templatesPath": {
"type": [
"array"
],
"default": [
"./blueprint-templates"
],
"description": "Where your Blueprint templates are stored relative to your workspace root path. Defaults to a folder named 'blueprint-templates' in the root of your project."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"compile-watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "node ./node_modules/tslint/bin/tslint \"src/**/*.ts\""
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"mocha": "^5.2.0",
"tslint": "^5.1.0",
"typescript": "^2.9.2",
"vscode": "^1.1.21",
"vscode-test": "^1.2.3"
},
"dependencies": {
"dir-compare": "^1.4.0",
"fs-extra": "^7.0.0",
"handlebars": "^4.1.2",
"lodash": "^4.17.13"
}
}