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 "devDependencies": { 33 "babel-cli": "^6.10.1", 34 "babel-core": "^6.10.4", 35 "chai": "^3.5.0", 36 "coffee-loader": "^0.7.2", 37 "coffee-script": "^1.10.0", 38 "eslint": "^2.13.1", 39 "gazeer": "^0.1.1", 40 "jade": "^1.11.0", 41 "jade-html-loader": "0.0.3", 42 "js-base64": "^2.1.9", 43 "mocha": "^2.4.5", 44 "postcss-cssnext": "^2.7.0", 45 "postcss-loader": "^0.9.1", 46 "sinon": "^1.17.3", 47 "sinon-chai": "^2.8.0", 48 "webpack": "~1.13.0", 49 "weex-components": "^0.2.0" 50 }, 51 "dependencies": { 52 "babel-loader": "^6.2.4", 53 "babel-plugin-transform-runtime": "^6.9.0", 54 "babel-preset-es2015": "^6.9.0", 55 "babel-runtime": "^6.9.2", 56 "hash-sum": "^1.0.2", 57 "loader-utils": "^1.1.0", 58 "md5": "^2.1.0", 59 "parse5": "^2.1.5", 60 "source-map": "^0.5.6", 61 "weex-scripter": "^0.1.6", 62 "weex-styler": "^0.3.1", 63 "weex-templater": "^0.3.5", 64 "weex-transformer": "^0.4.6", 65 "weex-vue-loader": "^0.7.0" 66 }, 67 "babel": { 68 "presets": [ 69 "es2015" 70 ] 71 } 72} 73