1{ 2 "name": "weex-loader", 3 "version": "0.7.12", 4 "description": "a webpack loader for weex", 5 "main": "index.js", 6 "author": "terrykingcha <terrykingcha@gmail.com>", 7 "repository": { 8 "type": "git", 9 "url": "https://github.com/weexteam/weex-loader.git" 10 }, 11 "licenses": "Apache-2.0", 12 "keywords": [ 13 "weex", 14 "loader", 15 "webpack", 16 "transformer" 17 ], 18 "scripts": { 19 "clear": " ", 20 "lint": "eslint --fix src", 21 "dev": "gazeer -p \"src/*.js\" -c \"npm run build\"", 22 "build": "node node_modules/babel-cli/bin/babel.js src --out-dir lib", 23 "test:build": "cd test && webpack --config ./webpack.config.js", 24 "test": "npm run test:build", 25 "rich:build": "cd sample && webpack --config ../webpack.rich.config.js", 26 "rich": "npm run lint && npm run build && npm run rich:build", 27 "lite:build": "cd sample && webpack --config ../webpack.lite.config.js", 28 "lite": "npm run lint && npm run build && npm run lite:build", 29 "ace:build": "webpack --config ./webpack.config.js", 30 "ace": "npm run lint && npm run build && npm run ace:build" 31 }, 32 "dependencies": { 33 "@babel/cli": "7.20.7", 34 "@babel/core": "7.20.12", 35 "@babel/plugin-proposal-class-properties": "7.18.6", 36 "@babel/plugin-transform-runtime": "7.19.6", 37 "@babel/preset-env": "7.20.2", 38 "@babel/runtime": "7.20.13", 39 "uglify-js": "3.17.4" 40 }, 41 "babel": { 42 "presets": [ 43 "es2015" 44 ] 45 } 46} 47