mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* [ADF-3093] Started li18nt VS Code extension * [ADF-3093] Started work on UI style lint tool for VSCode * [ADF-3093] Added UI style rules up to sg0006 * [ADF-3093] Added remaining style rules * [ADF-3093] Added docs and command line tool * [ADF-3093] Removed Microsoft notices and updated licences to Apache-2.0
22 lines
833 B
JSON
22 lines
833 B
JSON
{
|
|
"name": "li18nt",
|
|
"description": "Style checker for ADF translation files",
|
|
"author": "Alfresco Software",
|
|
"license": "Apache-2.0",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Alfresco/alfresco-ng2-components"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "cd server && npm install && cd ../client && npm install && cd ..",
|
|
"compile": "tsc -p client/tsconfig.json && cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
|
|
"compile:client": "tsc -p client/tsconfig.json",
|
|
"watch:client": "tsc -w -p client/tsconfig.json",
|
|
"compile:server": "cd server && npm run installServer && cd .. && tsc -p server/tsconfig.json",
|
|
"watch:server": "cd server && npm run installServer && cd .. && tsc -w -p server/tsconfig.json"
|
|
},
|
|
"devDependencies": {}
|
|
}
|