forked from aws/amazon-states-language-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "amazon-states-language-service",
"description": "Amazon States Language Service",
"author": "Amazon Web Services",
"main": "out/service.js",
"types": "out/service.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aws/amazon-states-language-service"
},
"bugs": {
"url": "https://github.com/aws/amazon-states-language-service"
},
"license": "MIT",
"version": "1.10.0",
"publisher": "aws",
"categories": [
"Programming Languages"
],
"scripts": {
"prepublish": "npm run compile",
"lint": "tslint 'src/**/*.ts' -p .",
"compile": "npm run lint && rm -rf out/* && npm run bundle-schema && tsc -b",
"watch": "tsc -b -w",
"test": "npm run compile && mocha",
"bundle-schema": "node ./scripts/transform.js"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^10.0.1",
"@types/node": "^12.11.7",
"json-schema-ref-parser": "^7.1.3",
"mocha": "^10.2.0",
"tslint": "^6.1.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"js-yaml": "^4.1.0",
"vscode-json-languageservice": "5.3.5",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.0",
"vscode-languageserver-types": "^3.15.1",
"yaml-language-server": "0.15.0"
}
}