-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 3.47 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "sort-js-object",
"displayName": "Sort JS Object",
"description": "Traverse and sort JS AST object keys",
"version": "0.1.2",
"publisher": "debens",
"engines": {
"vscode": "^1.38.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Debens/sort-js-object"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onCommand:sort-js-object.sort",
"onCommand:sort-js-object.sort-file"
],
"main": "./build/index.js",
"contributes": {
"commands": [
{
"command": "sort-js-object.sort",
"title": "Sort Highlighted JS"
},
{
"command": "sort-js-object.sort-file",
"title": "Sort JS File"
}
],
"keybindings": [
{
"command": "sort-js-object.sort",
"key": "alt+s",
"when": "editorHasSelection"
},
{
"command": "sort-js-object.sort-file",
"key": "ctrl+alt+s",
"when": "editorFocus"
}
],
"configuration": {
"title": "Sort JS Object",
"properties": {
"sort-js-object.interfaces": {
"type": "boolean",
"default": true,
"description": "Sort TypeScript interfaces by identifier name"
},
"sort-js-object.enum": {
"type": "boolean",
"default": true,
"description": "Sort TypeScript enumerations by key name"
}
}
}
},
"scripts": {
"start": "tsc -watch",
"build": "tsc",
"compile": "yarn build --noEmit",
"test": "jest --config jest.config.js",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:ci": "yarn test:coverage --ci --silent",
"release": "standard-version",
"release:alpha": "yarn release --prerelease",
"format": "prettier ./src/**/*",
"lint": "eslint --ext .js,.ts",
"lint:all": "eslint --ext .js,.ts ./src",
"lint:check": "eslint --print-config src/gatsby-node.ts | eslint-config-prettier-check",
"lint:staged": "lint-staged",
"vscode:prepublish": "yarn build"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jest": "^24.0.18",
"@types/node": "^10.12.21",
"@types/prettier": "^1.18.2",
"@types/ramda": "^0.26.21",
"@types/vscode": "^1.38.0",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"fs": "^0.0.1-security",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"path": "^0.12.7",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vsce": "^1.66.0",
"vscode-test": "^1.0.2"
},
"dependencies": {
"@babel/generator": "^7.6.0",
"@babel/parser": "^7.1.3",
"@babel/traverse": "^7.6.0",
"@babel/types": "^7.6.1",
"ramda": "^0.26.1"
}
}