|
- {
- "name": "lesspass",
- "version": "1.0.0",
- "description": "lesspass is like keepass without the need to persist passwords",
- "main": "app/app.js",
- "scripts": {
- "test": "mocha --compilers js:babel-core/register tests",
- "test:watch": "npm run test -- -w",
- "lint": "jshint app/**",
- "build:production": "npm prune && npm install && npm run lint && npm test && npm run build",
- "build": "npm-run-all clean copy:favicons build:static build:app",
- "clean": "rimraf dist && mkdir dist",
- "copy:favicons": "cpy 'static/favicons/*' dist/",
- "build:static": "npm-run-all copy:html copy:images build:css",
- "copy:html": "cpy 'static/*.html' dist",
- "copy:images": "cpy 'static/images/*.png' dist/images/",
- "build:css": "node-sass static/css/styles.scss dist/css/styles.css",
- "build:app": "browserify -e ./app/app.js -o ./dist/app.js",
- "prestart": "npm run build",
- "start": "npm-run-all --parallel serve watch:static watch:app",
- "serve": "static dist",
- "watch:static": "watch 'npm run build:static' static",
- "watch:app": "watchify -dv -e ./app/app.js -o ./dist/app.js"
- },
- "repository": {
- "type": "git",
- "url": "git+ssh://git@github.com/guillaumevincent/lesspass.git"
- },
- "keywords": [
- "keepass",
- "lesspass"
- ],
- "author": "Guillaume Vincent",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/guillaumevincent/lesspass/issues"
- },
- "homepage": "https://github.com/guillaumevincent/lesspass#readme",
- "dependencies": {
- "bootstrap": "^4.0.0-alpha.2",
- "clipboard": "^1.5.5"
- },
- "devDependencies": {
- "babel-core": "^6.3.26",
- "babel-plugin-transform-runtime": "^6.3.13",
- "babel-preset-es2015": "^6.3.13",
- "babel-runtime": "^5.8.34",
- "babelify": "latest",
- "browserify": "latest",
- "cpy": "latest",
- "jshint": "latest",
- "mocha": "latest",
- "node-sass": "latest",
- "node-static": "latest",
- "nodemon": "latest",
- "npm-run-all": "latest",
- "rimraf": "latest",
- "vue": "^1.0.12",
- "vue-hot-reload-api": "^1.2.2",
- "vueify": "^8.0.0",
- "vueify-insert-css": "^1.0.0",
- "watch": "latest",
- "watchify": "latest"
- },
- "babel": {
- "presets": [
- "es2015"
- ]
- },
- "browserify": {
- "transform": [
- [
- "babelify",
- {
- "presets": [
- "es2015"
- ],
- "plugins": [
- "transform-runtime"
- ]
- }
- ],
- [
- "vueify",
- {
- "presets": [
- "es2015"
- ],
- "plugins": [
- "transform-runtime"
- ]
- }
- ]
- ]
- },
- "jshintConfig": {
- "esnext": true
- }
- }
|