akamai-nginx
Version:
generate nginx config from akamai property
92 lines (91 loc) • 3.32 kB
JSON
{
"name": "akamai-nginx",
"version": "3.21.5",
"description": "generate nginx config from akamai property",
"main": "./index.js",
"tonicExampleFilename": "runkit-example.js",
"scripts": {
"commit": "./node_modules/.bin/git-cz",
"lint": "node ./node_modules/.bin/eslint *.js **/*.js **/**/*.js --ignore-pattern node_modules/ --ignore-pattern cache/ --ignore-pattern dist/ --ignore-pattern coverage/ --quiet",
"test": "npm run build && EDGEGRID_ENV=test cross-env NODE_ENV=test nyc ./node_modules/.bin/mocha --timeout 10000 --require babel-core/register --require babel-polyfill ./dist/test/*.spec.js ./dist/test/**/*.spec.js",
"test-integration": "npm run docker-start && npm run build && EDGEGRID_ENV=test node ./node_modules/.bin/mocha --timeout 10000 --require babel-core/register --require babel-polyfill ./dist/test/**/*.spec-int.js",
"build": "npm run lint && rimraf dist/ && babel ./src --out-dir dist/src --copy-files && babel ./test --out-dir dist/test --copy-files && babel ./*.js --out-dir dist/ --copy-files",
"start": "npm run build && AKA_MODE=PAPI node dist/start.js",
"start-local": "npm run build && AKA_MODE=LOCAL node dist/start.js",
"configure": "npm run build && node dist/configure.js",
"semantic-release": "semantic-release",
"clearcache": "sudo rm -rf ./cache/*",
"generate-certs": "openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout ssl/nginx.key -out ssl/nginx.crt -subj \"/C=AU/ST=NSW/L=Sydney/O=ACME Tech Inc/CN=www.site.test\"",
"docker-start": "docker-compose up -d",
"docker-stop": "docker-compose stop",
"docker-logs": "docker-compose logs --tail=0 --follow",
"docker-bounce": "docker-compose restart && npm run docker-logs"
},
"engines": {
"node": ">=8.4.0"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "https://github.com/wyvern8/akamai-nginx.git"
},
"author": "Andrew Vaughan <av@zoto.io> (https://halt.sh)",
"license": "MIT",
"keywords": [
"akamai",
"nginx",
"openresty",
"lua",
"proxy",
"papi"
],
"dependencies": {
"app-root-path": "^2.0.1",
"babel-polyfill": "^6.26.0",
"dotenv": "^5.0.0",
"edgegrid": "^3.0.2",
"format-json": "^1.0.3",
"globule": "^1.2.0",
"inquirer": "^5.0.0",
"require-dir": "^1.0.0",
"systemjs": "^0.21.0",
"webpack": "^4.0.0",
"moment": "^2.21.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"commitizen": "^2.9.6",
"cross-env": "^5.0.5",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.7.0",
"mocha": "^5.0.0",
"nyc": "^11.2.1",
"rimraf": "^2.6.1",
"semantic-release": "^15.0.0",
"supertest": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}