forked from microsoft/vscode-emmet-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 889 Bytes
/
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
{
"name": "vscode-emmet-helper",
"version": "1.1.20",
"description": "Helper to use emmet modules in Visual Studio Code",
"main": "./out/emmetHelper.js",
"types": "./out/emmetHelper.d.ts",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-emmet-helper"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-emmet-helper"
},
"devDependencies": {
"@types/node": "^6.0.46",
"typescript": "^2.1.5",
"mocha": "3.4.2",
"cpy-cli": "^1.0.1"
},
"dependencies": {
"@emmetio/extract-abbreviation": "^0.1.1",
"vscode-languageserver-types": "^3.0.3"
},
"scripts": {
"prepublish": "npm run compile && npm run test",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./ && cpy ./src/expand/*.js ./out/expand",
"test": "mocha out/test"
}
}