package.json 4.6 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1
{
2 3 4 5 6
    "name": "uniapp-js-framework",
    "version": "0.0.1",
    "scripts": {
        "lint": "eslint --fix --config package.json --ext .js --ext .vue --ignore-path .eslintignore build src",
        "dev:h5": "npm run lint && cross-env NODE_ENV=production UNI_WATCH=true UNI_PLATFORM=h5 node build/build.js",
7
        "build:h5": "npm run lint && cross-env NODE_ENV=production UNI_WATCH=false UNI_PLATFORM=h5 node build/build.js",
fxy060608's avatar
fxy060608 已提交
8 9 10 11 12 13 14 15 16 17
        "build:app-plus": "cross-env UNI_PLATFORM=app-plus rollup -c build/rollup.config.mp.js",
        "build:app:all": "npm run lint && npm run build:app && npm run build:app:nvue && npm run build:app:legacy",
        "build:app": "UNI_PLATFORM=app-plus-nvue UNI_SERVICE=uni rollup -c build/rollup.config.app.js",
        "build:app:nvue": "cross-env UNI_PLATFORM=app-plus-nvue rollup -c build/rollup.config.app.js",
        "build:app:legacy": "cross-env UNI_PLATFORM=app-plus-nvue UNI_SERVICE=legacy rollup -c build/rollup.config.app.js",
        "build:mp-qq": "cross-env UNI_PLATFORM=mp-qq rollup -c build/rollup.config.mp.js",
        "build:mp-weixin": "cross-env UNI_PLATFORM=mp-weixin rollup -c build/rollup.config.mp.js",
        "build:mp-baidu": "cross-env UNI_PLATFORM=mp-baidu rollup -c build/rollup.config.mp.js",
        "build:mp-alipay": "cross-env UNI_PLATFORM=mp-alipay rollup -c build/rollup.config.mp.js",
        "build:mp-toutiao": "cross-env UNI_PLATFORM=mp-toutiao rollup -c build/rollup.config.mp.js",
fxy060608's avatar
fxy060608 已提交
18
        "build:runtime": "npm run lint && npm run build:mp-weixin && npm run build:mp-qq && npm run build:mp-alipay && npm run build:mp-baidu && npm run build:mp-toutiao && npm run build:app-plus",
19 20
        "test:unit": "cross-env NODE_ENV=test UNI_PLATFORM=h5 mocha-webpack --require tests/unit/setup.js --webpack-config build/webpack.config.test.js tests/unit/**/*.spec.js"
    },
Q
qiang 已提交
21 22 23 24
    "dependencies": {
        "base64-arraybuffer": "^0.2.0",
        "intersection-observer": "^0.7.0"
    },
25 26 27 28 29 30 31 32 33 34 35 36
    "private": true,
    "devDependencies": {
        "@vue/cli-plugin-babel": "^3.4.1",
        "@vue/cli-plugin-eslint": "^3.4.1",
        "@vue/cli-plugin-unit-mocha": "^3.4.1",
        "@vue/cli-service": "^3.4.1",
        "@vue/test-utils": "^1.0.0-beta.25",
        "babel-eslint": "^10.0.1",
        "babylon": "^6.18.0",
        "browserslist": "^4.4.2",
        "caniuse-lite": "^1.0.30000940",
        "chai": "^4.1.2",
Q
qiang 已提交
37
        "copy": "^0.3.2",
38
        "cross-env": "^5.2.0",
Q
qiang 已提交
39
        "del": "^5.0.0",
40 41 42 43 44 45 46 47 48 49
        "eslint": "^5.5.0",
        "eslint-config-standard": "^12.0.0",
        "eslint-loader": "^2.1.0",
        "eslint-plugin-import": "^2.14.0",
        "eslint-plugin-node": "^7.0.1",
        "eslint-plugin-promise": "^4.0.0",
        "eslint-plugin-standard": "^4.0.0",
        "eslint-plugin-vue": "^4.7.1",
        "jsdom": "^13.0.0",
        "jsdom-global": "^3.0.2",
Q
qiang 已提交
50
        "jsonfile": "^5.0.0",
fxy060608's avatar
fxy060608 已提交
51
        "rollup": "^1.17.0",
52
        "rollup-plugin-alias": "^1.4.0",
fxy060608's avatar
fxy060608 已提交
53 54
        "rollup-plugin-commonjs": "^10.0.1",
        "rollup-plugin-node-resolve": "^5.2.0",
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        "rollup-plugin-replace": "^2.1.0",
        "strip-json-comments": "^2.0.1",
        "vue": "^2.6.8",
        "vue-router": "^3.0.1",
        "vue-template-compiler": "^2.6.8",
        "webpack": "^4.18.0",
        "webpack-bundle-analyzer": "^3.0.3",
        "webpack-virtual-modules": "^0.1.10"
    },
    "eslintConfig": {
        "root": true,
        "env": {
            "node": true
        },
        "extends": [
            "plugin:vue/recommended",
            "standard"
        ],
        "globals": {
            "App": true,
            "Page": true,
76 77
            "Component": true,
            "Behavior": true,
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
            "getApp": true,
            "getCurrentPages": true,
            "plus": true,
            "uni": true,
            "Vue": true,
            "wx": true,
            "my": true,
            "swan": true,
            "__uniConfig": true,
            "__uniRoutes": true,
            "UniViewJSBridge": true,
            "UniServiceJSBridge": true,
            "__PLATFORM__": true,
            "__VERSION__": true,
            "__GLOBAL__": true,
93 94
            "__PLATFORM_TITLE__": true,
            "__PLATFORM_PREFIX__": true
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
        },
        "rules": {
            "no-tabs": 0,
            "standard/no-callback-literal": 0
        },
        "parserOptions": {
            "parser": "babel-eslint"
        }
    },
    "browserslist": [
        "last 3 versions",
        "Android >= 4.1",
        "ios >= 8"
    ],
    "license": "Apache-2.0",
    "main": "index.js",
    "description": "",
    "author": ""
fxy060608's avatar
fxy060608 已提交
113
}