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:lint": "eslint -c .eslintrc --fix test/**/*.ts", 9 "test:unit": "mocha --timeout 5000 -r ts-node/register test/lib.ts test/ut/**/*.ts test/ut/*.ts", 10 "build:mock": "cd ./mock-generate && npm run build", 11 "build": "npm run build:mock && node build_jsmock_system_plugin.js && node build_strip_native_min.js" 12 }, 13 "keywords": [ 14 "javascript", 15 "typescript", 16 "hml", 17 "css", 18 "mvvm" 19 ], 20 "devDependencies": { 21 "babel-core": "^6.26.3", 22 "babel-loader": "^6.4.1", 23 "babel-plugin-external-helpers": "^6.22.0", 24 "babel-preset-env": "^1.7.0", 25 "babel-runtime": "^6.26.0", 26 "chai": "^4.2.0", 27 "mocha": "^8.2.1", 28 "rollup": "^2.32.1", 29 "rollup-plugin-babel": "^3.0.7", 30 "rollup-plugin-commonjs": "^10.1.0", 31 "rollup-plugin-eslint": "^7.0.0", 32 "rollup-plugin-json": "^4.0.0", 33 "rollup-plugin-node-resolve": "^5.2.0", 34 "rollup-plugin-tslint": "^0.2.2", 35 "rollup-plugin-typescript2": "^0.9.0", 36 "rollup-plugin-uglify": "^6.0.4", 37 "sinon": "^9.2.2", 38 "ts-node": "^9.0.0", 39 "tslib": "^2.0.3", 40 "@types/jest": "^27.4.1", 41 "@types/node": "^17.0.23", 42 "@typescript-eslint/eslint-plugin": "^4.8.2", 43 "@typescript-eslint/parser": "^4.8.2", 44 "eslint": "^7.14.0", 45 "eslint-config-prettier": "^8.5.0", 46 "eslint-plugin-node": "^11.1.0", 47 "jest": "^27.5.1", 48 "prettier": "^2.6.1", 49 "ts-jest": "^27.1.4", 50 "typescript": "4.1.3" 51 } 52} 53