-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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": "blits-dev-tools",
"version": "1.0.0",
"description": "Development tools for the Lightning Blits framework",
"author": "Ugur Aslan <ugur@uguraslan.net>",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"vscode-extension",
"eslint-plugin-blits",
"prettier-plugin-blits"
],
"repository": {
"type": "git",
"url": "https://github.com/lightning-js/blits-dev-tools.git"
},
"bugs": {
"url": "https://github.com/lightning-js/blits-dev-tools/issues"
},
"homepage": "https://lightningjs.io/",
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"blits",
"lightningjs",
"lightning",
"development tools",
"vscode",
"eslint",
"prettier"
],
"scripts": {
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"vscode:package": "npm run package --workspace=vscode-extension",
"vscode:publish": "npm run publish --workspace=vscode-extension",
"vscode:test": "npm run run-tests --workspace=vscode-extension",
"eslint:publish": "npm publish --workspace=eslint-plugin-blits --access public",
"prettier:dev": "npm run dev --workspace=prettier-plugin-blits"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
}
}