1{ 2 "name": "JSFramework", 3 "version": "1.0.0", 4 "description": "The JSFramework is a framework for building mobile cross-platform UI written in TypeScript.", 5 "license": "Apache 2.0", 6 "main": "index.js", 7 "scripts": { 8 "test": "jest --coverage --logHeapUsage --config ./jest.config.js", 9 "test:lint": "eslint -c .eslintrc --fix test/**/*.ts", 10 "test:unit": "mocha --timeout 5000 -r ts-node/register test/lib.ts test/ut/**/*.ts test/ut/*.ts", 11 "build:mock": "cd ./mock-generate && npm run build", 12 "build": "npm run build:mock && node build_jsmock_system_plugin.js && node build_strip_native_min.js", 13 "lint": "eslint --ext .ts src", 14 "format": "prettier --write .\\src\\" 15 }, 16 "keywords": [ 17 "javascript", 18 "typescript", 19 "hml", 20 "css", 21 "mvvm" 22 ], 23 "devDependencies": { 24 "babel-core": "^6.26.3", 25 "babel-loader": "^6.4.1", 26 "babel-plugin-external-helpers": "^6.22.0", 27 "babel-preset-env": "^1.7.0", 28 "babel-runtime": "^6.26.0", 29 "chai": "^4.2.0", 30 "mocha": "^8.2.1", 31 "rollup": "^2.32.1", 32 "rollup-plugin-babel": "^3.0.7", 33 "rollup-plugin-commonjs": "^10.1.0", 34 "rollup-plugin-eslint": "^7.0.0", 35 "rollup-plugin-json": "^4.0.0", 36 "rollup-plugin-node-resolve": "^5.2.0", 37 "rollup-plugin-tslint": "^0.2.2", 38 "rollup-plugin-typescript2": "^0.9.0", 39 "rollup-plugin-uglify": "^6.0.4", 40 "sinon": "^9.2.2", 41 "ts-node": "^9.0.0", 42 "tslib": "^2.0.3", 43 "@types/jest": "^27.4.1", 44 "@types/chai": "^4.3.12", 45 "@types/node": "^17.0.23", 46 "@types/mocha": "^10.0.6", 47 "@typescript-eslint/eslint-plugin": "^4.8.2", 48 "@typescript-eslint/parser": "^4.8.2", 49 "eslint": "^7.14.0", 50 "eslint-config-prettier": "^8.5.0", 51 "eslint-plugin-node": "^11.1.0", 52 "jest": "^27.5.1", 53 "prettier": "^2.6.1", 54 "ts-jest": "^27.1.4", 55 "typescript": "4.1.3" 56 } 57} 58