UNPKG

jsmoo

Version:

JavaScript Minimalist Object Orientation

57 lines (56 loc) 1.65 kB
{ "name": "jsmoo", "version": "0.18.3", "description": "JavaScript Minimalist Object Orientation", "main": "lib/index.js", "scripts": { "watch": "watch 'npm run lint && npm run test' src/ test/ -d", "test": "mocha", "lint": "eslint src/ test/", "build": "babel src -d lib", "prerelease": "npm run lint && npm run test && npm run build", "publishMajor": "npm run prerelease && npm version majori -m \"Bump to version %s\" && git push && npm publish", "publishMinor": "npm run prerelease && npm version minor -m \"Bump to version %s\" && git push && npm publish", "publishPatch": "npm run prerelease && npm version patch -m \"Bump to version %s\" && git push && npm publish" }, "repository": { "type": "git", "url": "git+https://github.com/XescuGC/jsmoo.git" }, "files": [ "lib/", "package.json", "README.md", "LICENSE" ], "keywords": [ "oo", "object", "orientation", "moo" ], "author": "xescugc <xescugil@gmail.com>", "license": [ { "type": "MIT", "url": "https://github.com/XescuGC/jsmoo/blob/master/LICENSE" } ], "bugs": { "url": "https://github.com/XescuGC/jsmoo/issues" }, "homepage": "https://github.com/XescuGC/jsmoo#readme", "devDependencies": { "babel-cli": "^6.4.0", "babel-plugin-es6-promise": "^1.0.0", "babel-plugin-transform-object-assign": "^6.3.13", "babel-preset-es2015": "^6.3.13", "babel-register": "^6.4.3", "chai": "^3.5.0", "es6-promise": "^4.0.5", "eslint": "^1.10.3", "eslint-config-airbnb": "^3.1.0", "mocha": "^2.4.5", "watch": "^0.17.1" } }