refraction-player
Version:
Event player for Refraction
86 lines (85 loc) • 2.64 kB
JSON
{
"name": "refraction-player",
"version": "1.0.2",
"description": "Event player for Refraction",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist .nyc_output",
"test": "cross-env BABEL_ENV=commonjs nyc --require babel-register mocha --recursive",
"test:watch": "npm test -- --watch",
"test:cov": "nyc report --reporter=text-lcov | coveralls",
"check:src": "npm run lint && npm run 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/refraction-player.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/refraction-player.min.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run check:src && npm run build && check-es3-syntax lib/ dist/ --kill",
"lint": "eslint src test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbasso/refraction-player.git"
},
"keywords": [
"play",
"refraction",
"replay",
"events"
],
"author": "Matteo Basso (https://github.com/mbasso)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbasso/refraction-player/issues"
},
"homepage": "https://github.com/mbasso/refraction-player#readme",
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.10.3",
"babel-plugin-transform-es3-member-expression-literals": "6.8.0",
"babel-plugin-transform-es3-property-literals": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.9.0",
"check-es3-syntax-cli": "0.1.0",
"coveralls": "2.11.9",
"cross-env": "1.0.7",
"eslint": "2.12.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.8.1",
"eslint-plugin-jsx-a11y": "1.3.0",
"eslint-plugin-react": "5.1.1",
"expect": "1.20.2",
"istanbul": "0.4.3",
"mocha": "2.2.5",
"nyc": "6.4.4",
"refraction": "1.1.0",
"rimraf": "2.5.2",
"webpack": "1.13.1"
},
"peerDependencies": {
"refraction": "1.1.0"
},
"npmName": "refraction-player",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
}
}