• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  },
14  "keywords": [
15    "javascript",
16    "typescript",
17    "hml",
18    "css",
19    "mvvm"
20  ],
21  "devDependencies": {
22    "babel-core": "^6.26.3",
23    "babel-loader": "^6.4.1",
24    "babel-plugin-external-helpers": "^6.22.0",
25    "babel-preset-env": "^1.7.0",
26    "babel-runtime": "^6.26.0",
27    "chai": "^4.2.0",
28    "mocha": "^8.2.1",
29    "rollup": "^2.32.1",
30    "rollup-plugin-babel": "^3.0.7",
31    "rollup-plugin-commonjs": "^10.1.0",
32    "rollup-plugin-eslint": "^7.0.0",
33    "rollup-plugin-json": "^4.0.0",
34    "rollup-plugin-node-resolve": "^5.2.0",
35    "rollup-plugin-tslint": "^0.2.2",
36    "rollup-plugin-typescript2": "^0.9.0",
37    "rollup-plugin-uglify": "^6.0.4",
38    "sinon": "^9.2.2",
39    "ts-node": "^9.0.0",
40    "tslib": "^2.0.3",
41    "@types/jest": "^27.4.1",
42    "@types/chai": "^4.3.12",
43    "@types/node": "^17.0.23",
44    "@types/mocha": "^10.0.6",
45    "@typescript-eslint/eslint-plugin": "^4.8.2",
46    "@typescript-eslint/parser": "^4.8.2",
47    "eslint": "^7.14.0",
48    "eslint-config-prettier": "^8.5.0",
49    "eslint-plugin-node": "^11.1.0",
50    "jest": "^27.5.1",
51    "prettier": "^2.6.1",
52    "ts-jest": "^27.1.4",
53    "typescript": "4.1.3"
54  }
55}
56