|
- {
- "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 build:html build:app",
- "clean": "rimraf dist",
- "build:html": "cpy '**/*.html' '../dist/' --cwd=static --parents",
- "build:app": "browserify -e ./app/app.js -o ./dist/app.js",
- "prestart": "npm run build",
- "start": "npm-run-all --parallel serve watch:html watch:app",
- "serve": "http-server -p 5000 dist/",
- "watch:html": "watch 'npm run build:html' 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",
- "devDependencies": {
- "babel-core": "latest",
- "babel-preset-es2015": "latest",
- "babelify": "latest",
- "browserify": "latest",
- "cpy": "latest",
- "http-server": "latest",
- "jshint": "latest",
- "mocha": "latest",
- "nodemon": "latest",
- "npm-run-all": "latest",
- "rimraf": "latest",
- "sassify": "latest",
- "watch": "latest",
- "watchify": "latest"
- },
- "babel": {
- "presets": [
- "es2015"
- ]
- },
- "browserify": {
- "transform": [
- [
- "babelify",
- {
- "presets": [
- "es2015"
- ]
- }
- ],
- [
- "sassify",
- {
- "auto-inject": true
- }
- ]
- ]
- },
- "jshintConfig": {
- "esnext": true
- }
- }
|