nginxconfig.io/package.json

72 lines
2.5 KiB
JSON
Raw Normal View History

2020-04-27 19:20:51 +00:00
{
2020-06-01 19:54:34 +00:00
"name": "nginxconfig.io",
2020-04-27 19:20:51 +00:00
"version": "1.0.0",
2020-06-04 13:44:30 +00:00
"description": "NGINX config generator on steroids",
"private": true,
"license": "MIT",
"engines": {
"node": "12.16.2"
2020-06-04 13:44:30 +00:00
},
"main": "src/nginxconfig/mount.js",
2020-04-27 19:20:51 +00:00
"scripts": {
"build": "npm run build:clean && npm run build:template && npm run build:static && npm run build:tool",
"build:clean": "do-vue clean",
"build:template": "do-vue template && node src/nginxconfig/build/template.js",
"build:static": "copyfiles --up 2 src/static/{*,**/*} dist",
"build:tool": "vue-cli-service build src/nginxconfig/mount.js --no-clean",
"dev": "npm run build:template && npm run dev:tool",
"dev:tool": "vue-cli-service serve src/nginxconfig/mount.js",
"analyze": "npm run build:tool -- --analyze",
2020-04-27 19:20:51 +00:00
"deploy:spaces:comment": "do-vue comment nginxconfig",
"test": "npm run test:eslint && npm run test:sass-lint",
"test:fix": "npm run test:eslint:fix && npm run test:sass-lint:fix",
2020-04-27 19:20:51 +00:00
"test:eslint": "eslint 'src/**/*.{js,vue}'",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:sass-lint": "sass-lint 'src/**/*.scss' --verbose --no-exit --config .sasslintrc",
"test:sass-lint:fix": "sass-lint-auto-fix 'src/**/*.scss'"
2020-04-27 19:20:51 +00:00
},
"repository": {
"type": "git",
2020-06-01 19:54:34 +00:00
"url": "git+https://github.com/digitalocean/nginxconfig.io.git"
2020-04-27 19:20:51 +00:00
},
"keywords": [
"nginx"
],
"author": "DigitalOcean",
"bugs": {
2020-06-01 19:54:34 +00:00
"url": "https://github.com/digitalocean/nginxconfig.io/issues"
2020-04-27 19:20:51 +00:00
},
2020-06-01 19:54:34 +00:00
"homepage": "https://github.com/digitalocean/nginxconfig.io#readme",
2020-04-27 19:20:51 +00:00
"dependencies": {
"clipboard": "^2.0.6",
2020-04-28 11:26:46 +00:00
"clone": "^2.1.2",
2020-05-22 20:17:01 +00:00
"diff": "^4.0.2",
2020-04-27 19:20:51 +00:00
"do-bulma": "git+https://github.com/do-community/do-bulma.git",
"do-vue": "git+https://github.com/do-community/do-vue.git",
2020-05-22 20:17:01 +00:00
"escape-html": "^1.0.3",
2020-07-17 15:21:21 +00:00
"files-diff": "0.0.3",
"js-yaml": "^3.14.0",
2020-06-25 16:10:58 +00:00
"memory-tar-create": "0.0.2",
2020-04-28 18:53:59 +00:00
"pretty-checkbox-vue": "^1.1.9",
"prismjs": "^1.21.0",
2020-05-05 15:29:13 +00:00
"qs": "^6.9.4",
"simple-js-sha2-256": "^1.0.7",
"string-similarity": "^4.0.2",
"vue": "^2.6.12",
"vue-select": "^3.10.8"
2020-04-27 19:20:51 +00:00
},
"devDependencies": {
"@vue/cli-service": "^4.5.4",
2020-05-27 13:17:24 +00:00
"copyfiles": "^2.3.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^7.8.1",
2020-07-17 15:21:21 +00:00
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.26.10",
2020-04-27 19:20:51 +00:00
"sass-lint": "^1.13.1",
"sass-lint-auto-fix": "^0.21.2",
"sass-loader": "^10.0.2",
"vue-template-compiler": "^2.6.12",
"webpack-bundle-analyzer": "^3.8.0"
2020-04-27 19:20:51 +00:00
}
}