generated from nginxinc/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
75 lines (75 loc) · 2.3 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
{
"name": "njs-acme",
"version": "1.0.0",
"description": "## How do I use this template?",
"main": "dist/acme.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nginx/njs-acme.git"
},
"keywords": [],
"author": "",
"license": "APACHE-2.0",
"bugs": {
"url": "https://github.com/nginx/njs-acme/issues"
},
"homepage": "https://github.com/nginx/njs-acme#readme",
"engines": {
"node": ">= 14.15"
},
"scripts": {
"build": "rollup -c --environment NODE_ENV:dev",
"clean": "rimraf dist/* lib/* node_modules/.cache/*",
"lint": "run-p lint:*",
"lint:eslint": "npx eslint .",
"start": "run-p watch start-nginx",
"start-nginx": "start-nginx --version 1.25.x --port 8090 --watch dist/ integration-tests/nginx.conf",
"test": "run-p test:*",
"test:unit": "mocha --config ./unit-tests/.mocharc.js",
"test:integration": "rollup -c && mocha --config ./integration-tests/.mocharc.js",
"watch": "rollup -c --watch --no-watch.clearScreen",
"prettier": "prettier --check --write src/"
},
"dependencies": {
"asn1js": "^3.0.5",
"pkijs": "^3.0.14"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@babel/register": "^7.21.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/babel__core": "^7.20.0",
"@types/mocha": "^8.2.3",
"@types/rollup-plugin-add-git-msg": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-plugin-empower-assert": "^2.0.0",
"babel-plugin-espower": "^3.0.1",
"babel-preset-njs": "^0.2.1",
"babel-register-ts": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"got": "^11.8.6",
"mocha": "^10.8.2",
"mocha-suite-hooks": "^0.1.0",
"nginx-testing": "^0.4.0",
"njs-types": "^0.8.2",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-add-git-msg": "^1.1.0",
"typescript": "~4.2.4"
}
}