UNPKG

assertions-recorder

Version:

a module for publishing all dom and track events to the assertions recorder application

66 lines (65 loc) 2.3 kB
{ "name": "assertions-recorder", "version": "0.0.11", "description": "a module for publishing all dom and track events to the assertions recorder application", "main": "dist/cjs/index.js", "browser": "dist/umd/assertionsRecorder.js", "module": "dist/es/index.js", "jsxnext:main": "dist/es/index.js", "files": [ "dist", "src" ], "engines": { "node": ">=4.0.0" }, "scripts": { "prepublish": "npm run build", "precommit": "npm run lint:test", "prepush": "npm run lint:test", "release": "release-it", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", "lint": "npm run lint:eslint", "lint:eslint": "eslint src/*.js", "test": "jest", "test:coverage": "jest --coverage ", "test:watch": "clear && jest --watch", "lint:test": "npm run lint && npm run test:coverage", "build": "npm run lint:test && npm run build:cjs && npm run build:es && npm run build:umd", "build:watch": "clear && rimraf dist/cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir dist/cjs", "build:es": "rimraf dist/es && cross-env BABEL_ENV=es babel src --out-dir dist/es", "build:cjs": "rimraf dist/cjs && cross-env BABEL_ENV=cjs babel src --out-dir dist/cjs", "build:umd": "rimraf dist/umd && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c" }, "keywords": [], "author": "segment (undefined)", "license": "MIT", "repository": "/assertions-recorder", "devDependencies": { "babel-cli": "^6.26.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-es2015": "^6.24.1", "coveralls": "^2.13.1", "cross-env": "^5.0.5", "eslint": "^4.6.0", "eslint-config-devine": "^1.7.1", "eslint-plugin-babel": "^4.1.2", "husky": "^0.14.3", "jest": "^20.0.4", "release-it": "^2.8.5", "rimraf": "^2.6.1", "rollup-plugin-babel": "^3.0.2", "rollup-plugin-bundle-size": "^1.0.1", "rollup-plugin-commonjs": "^8.2.0", "rollup-plugin-node-resolve": "^3.0.0", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-uglify": "^2.0.1" }, "dependencies": { "babel-eslint": "^8.2.6", "eslint-config-defaults": "^9.0.0", "optimal-select": "3.5.0", "postmate": "^1.4.2", "rollup": "^0.64.1" } }