UNPKG

queez

Version:

A simple Javascript library to create quizz

70 lines (69 loc) 1.83 kB
{ "name": "queez", "version": "0.1.5", "description": "A simple Javascript library to create quizz", "main": "dist/index.js", "repository": { "type": "git", "url": "https://github.com/arncet/queez" }, "keywords": [ "quiz", "quizz", "survey", "queez" ], "browserify": { "transform": [ [ "babelify", { "presets": [ "es2015", "stage-2" ] } ] ] }, "author": "Arnaud Cetoute <arnaud.cetoute@hotmail.fr>", "license": "MIT", "bugs": { "url": "https://github.com/arncet/queez/issues" }, "homepage": "https://github.com/arncet/queez", "devDependencies": { "babel-cli": "^6.10.1", "babel-core": "^6.9.1", "babel-eslint": "^7.0.0", "babel-preset-es2015": "^6.9.0", "babel-preset-stage-2": "^6.13.0", "babelify": "^7.3.0", "browserify": "^13.0.1", "chai": "^3.5.0", "eslint": "^3.7.1", "eslint-config-standard": "^6.2.0", "eslint-plugin-promise": "^2.0.1", "eslint-plugin-standard": "^2.0.1", "gulp": "^3.9.1", "gulp-notify": "^2.2.0", "gulp-uglify": "^3.0.0", "mocha": "^3.1.0", "pump": "^1.0.2", "vinyl-source-stream": "^1.1.0", "watchify": "^3.7.0" }, "dependencies": { "lodash.get": "^4.3.0", "lodash.groupby": "^4.4.0" }, "scripts": { "lint": "eslint src/*;", "test": "./node_modules/.bin/mocha --compilers js:babel-core/register;", "copy-readme": "cp -R README.md dist/", "copy-package": "cp -R package.json dist/", "gulp-build": "./node_modules/.bin/gulp build", "gulp-compress": "./node_modules/.bin/gulp compress", "pub": "npm run test && npm run gulp-build && npm run gulp-compress && npm run copy-readme && npm run copy-package && cd dist && npm publish" } }