-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 3.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "akamai-nginx",
"version": "0.0.0-semantically-released",
"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": {
"akamai-edgegrid": "^3.5.1",
"app-root-path": "^2.0.1",
"babel-polyfill": "^6.26.0",
"dotenv": "^5.0.0",
"format-json": "^1.0.3",
"inquirer": "^9.0.0",
"moment": "^2.29.4",
"require-dir": "^1.0.0",
"systemjs": "^0.21.0",
"webpack": "^5.94.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^9.2.1",
"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": "^24.2.0",
"supertest": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}