UNPKG

proxy-observable

Version:
70 lines (69 loc) 2.19 kB
{ "name": "proxy-observable", "version": "4.0.4", "description": "ES6 Proxy observable implementation", "scripts": { "test-manual": "./node_modules/.bin/mocha --require babel-register ./src/**/*.test.js --timeout 999000", "test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- ./src/ --require babel-register --timeout 999000", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls", "jsdoc2md": "./node_modules/.bin/jsdoc2md src/*.js > api.md", "commit": "./node_modules/.bin/git-cz", "build-es6": "./node_modules/.bin/rollup -c rollup.es6.config.js", "build-prod": "./node_modules/.bin/rollup -c rollup.config.js", "build": "npm run build-es6 && npm run build-prod" }, "main": "bin/proxy.observable.es6.js", "repository": { "type": "git", "url": "git+https://github.com/AntonLapshin/proxy-observable.git" }, "keywords": [ "proxy", "es6", "bind", "array", "object", "track", "property change", "observable", "array observable", "object observable", "dynamic object", "reflection", "computed", "binding" ], "author": "Anton Lapshin", "license": "MIT", "bugs": { "url": "https://github.com/AntonLapshin/proxy-observable/issues" }, "homepage": "https://github.com/AntonLapshin/proxy-observable#readme", "devDependencies": { "babel": "^6.23.0", "babel-cli": "^6.26.0", "babel-core": "^6.26.3", "babel-eslint": "^6.1.2", "babel-plugin-external-helpers": "^6.22.0", "babel-plugin-proxy": "^1.1.0", "babel-preset-es2015": "^6.24.1", "babel-preset-latest": "^6.24.1", "babel-register": "^6.26.0", "commitizen": "^2.10.1", "coveralls": "^2.13.3", "cz-conventional-changelog": "^2.1.0", "eslint": "^3.19.0", "istanbul": "^1.0.0-alpha.2", "jsdoc": "^3.5.5", "jsdoc-to-markdown": "^3.0.4", "mocha": "^3.5.3", "rollup": "^0.43.0", "rollup-plugin-babel": "^2.7.1", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-uglify": "^2.0.1", "should": "^11.2.1" }, "czConfig": { "path": "node_modules/cz-conventional-changelog" } }