flypro
Version:
66 lines (65 loc) • 2.05 kB
JSON
{
"name": "flypro",
"version": "0.5.1",
"description": "Flypro",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint src test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/flypro.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/flypro.min.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc npm test",
"pretest": "rimraf coverage",
"test": "mocha --compilers js:babel-register --recursive",
"check:src": "npm run lint && npm run test",
"coverage": "cat coverage/lcov.info | coveralls",
"prepublish": "npm run clean && npm run check:src && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stremann/flypro.git"
},
"keywords": [
"flypro",
"flux",
"state",
"send",
"command"
],
"author": "Roman Stremedlovskyi <stremann@yahoo.com> (https://github.com/stremann)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stremann/flypro/issues"
},
"homepage": "https://github.com/stremann/flypro#readme",
"nyc": {
"lines": 95,
"reporter": "lcov",
"report-dir": "coverage"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.2"
}
}