forked from microsoft/vscode-css-languageservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "vscode-css-languageservice",
"version": "3.0.9-next.20",
"description": "Language service for CSS, LESS and SCSS",
"main": "./lib/umd/cssLanguageService.js",
"typings": "./lib/umd/cssLanguageService",
"module": "./lib/esm/cssLanguageService.js",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-css-languageservice"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-css-languageservice"
},
"devDependencies": {
"@types/mocha": "^2.2.33",
"@types/node": "^7.0.43",
"istanbul": "^0.4.5",
"mdn-browser-compat-data": "^0.0.38",
"mdn-data": "^1.1.2",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"xml2js": "^0.4.19"
},
"dependencies": {
"vscode-languageserver-types": "^3.7.2",
"vscode-nls": "^3.2.2"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run compile-esm && npm run test",
"postpublish": "node ./build/post-publish.js",
"compile": "tsc -p ./src",
"compile-esm": "tsc -p ./src/tsconfig.esm.json",
"clean": "rimraf lib",
"watch": "tsc -w -p ./src",
"test": "npm run compile && mocha && npm run lint",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui tdd -R spec -t 5000",
"lint": "tslint src/**/*.ts",
"update-data": "node ./build/generate_browserjs.js",
"install-types-next": "yarn add vscode-languageserver-types@next",
"preversion": "npm test",
"postversion": "git push && git push --tags"
}
}