Files
developtools_ace-ets2bundle/compiler/package.json
T
zhongjianfei 424696f97b zhongjianfei@huawei.com
Signed-off-by: zhongjianfei <zhongjianfei@huawei.com>
2021-08-28 16:48:39 +08:00

45 lines
1.4 KiB
JSON

{
"name": "compilier",
"version": "0.0.1",
"description": "Transpile ace2.0 ui-syntax to support UI control render, Component and State management.",
"private": true,
"keywords": [
"ace",
"loader",
"webpack"
],
"scripts": {
"lint": "eslint --fix ./src --ext .ts",
"build": "npm run generateDeclarations && ./node_modules/.bin/babel ./src --out-dir lib --extensions .ts",
"create": "node ./lib/create.js --env projectName",
"compile": "webpack --config webpack.config.js --env buildMode=debug projectName",
"test": "npm run build && mocha -r ts-node/register test/test.ts",
"generateDeclarations": "node ./build_declarations_file.js",
"postinstall": "node npm-install.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.0.0",
"@typescript-eslint/parser": "^4.11.0",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"uglify-es": "^3.3.10"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.0",
"deccjsunit": "latest",
"log4js": "^6.3.0",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.48.0",
"webpack-cli": "^4.2.0"
}
}