package.json 1.9 KB
Newer Older
L
ligang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
{
  "name": "@fedor/io",
  "version": "1.0.5",
  "description": "generic io toolchain both for browser and node",
  "main": "dist/io.min.js",
  "module": "dist/io.esm.js",
  "author": "ljw <leijiawang@analysys.com.cn>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://git.analysys.cn/npm/io"
  },
  "dependencies": {
  },
  "devDependencies": {
    "axios": "^0.16.2",
    "lodash": "^4.17.4",
    "@fedor/standard": "latest",
    "babel-core": "^6.25.0",
    "babel-loader": "^7.1.1",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-istanbul": "^4.1.4",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.5.2",
    "body-parser": "^1.17.2",
    "chai": "^4.1.1",
    "cors": "^2.8.4",
    "express": "^4.15.4",
    "istanbul-instrumenter-loader": "^3.0.0",
    "karma": "^1.7.0",
    "karma-chrome-launcher": "^2.2.0",
    "karma-coverage": "^1.1.1",
    "karma-coverage-istanbul-reporter": "^1.3.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.3",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^2.0.4",
    "mocha": "^3.5.0",
    "rollup-plugin-babel": "^3.0.3",
    "rollup-plugin-cleanup": "^2.0.0",
    "rollup-worker": "^1.0.1",
    "sinon": "^3.1.0",
    "webpack": "^3.5.1"
  },
  "scripts": {
    "build": "npm run lint:fix && rollup-bundle --config .config/build.js",
    "prepublishOnly": "npm run build",
    "test:node": "mocha",
    "test:browser": "karma start",
    "lint:fix": "standard --fix",
    "lint": "standard",
    "test": "npm run lint && npm run test:node"
  },
  "standard": {
    "ignore": [
      "test"
    ]
  },
  "files": [
    "dist/"
  ],
  "maintainers": [
    {
      "name": "public",
      "email": "rayjump@163.com"
    },
    {
      "name": "allex",
      "email": "allex.wxn@gmail.com"
    }
  ]
}