|
- {
- "name": "lesspass",
- "version": "1.0.0",
- "description": "lesspass is like keepass without the need to persist password",
- "main": "lesspass.js",
- "scripts": {
- "test": "mocha --compilers js:babel-core/register --ui bdd --reporter min --recursive ./tests",
- "build": "npm-run-all clean copy build_app",
- "build_app": "browserify -e ./app/app.js -o ./dist/app.js",
- "clean": "rimraf ./dist/**/* && rimraf dist",
- "copy": "mkdir dist && cp -r public/* dist/",
- "serve": "static -p 5000 --gzip --host-address 0.0.0.0 dist/",
- "start": "npm run serve",
- "prestart": "npm run build",
- "watch": "npm-run-all --parallel serve watch_app",
- "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",
- "nodejs",
- "node"
- ],
- "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",
- "chardinjs": "git://github.com/heelhook/chardin.js.git",
- "clipboard": "^1.5.5",
- "font-awesome": "^4.5.0",
- "jquery": "^2.1.4"
- },
- "jshintConfig": {
- "esnext": true
- },
- "devDependencies": {
- "babel-core": "^6.3.15",
- "babel-preset-es2015": "^6.3.13",
- "babelify": "^7.2.0",
- "browserify": "^12.0.1",
- "mocha": "^2.3.4",
- "node-static": "^0.7.7",
- "npm-run-all": "^1.4.0",
- "rimraf": "^2.4.4"
- },
- "babel": {
- "presets": [
- "es2015"
- ]
- },
- "browserify": {
- "transform": [
- [
- "babelify",
- {
- "presets": [
- "es2015"
- ]
- }
- ]
- ]
- }
- }
|