annotate src/nodejs/unit-http/package.json @ 2787:ad91da336d21 default tip

Tighten up some string arrays This is the normal way of declaring such things. Reviewed-by: Zhidao HONG <z.hong@f5.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
author Andrew Clayton <a.clayton@nginx.com>
date Mon, 22 Apr 2024 15:04:29 +0100
parents 7158c417a711
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
802
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
1 {
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
2 "name": "unit-http",
1831
da356521859a Node.js: used distinct placeholder for version in "package.json".
Valentin Bartenev <vbart@nginx.com>
parents: 1132
diff changeset
3 "version": "%%VERSION%%",
802
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
4 "description": "HTTP module for NGINX Unit",
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
5 "main": "http.js",
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
6 "scripts": {
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
7 "clean": "node-gyp clean",
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
8 "configure": "node-gyp configure",
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
9 "build": "node-gyp build",
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
10 "install": "node-gyp configure build"
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
11 },
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
12 "author": "Alexander Borisov",
816
e92e58984512 Added ability to publish Node.js module.
Alexander Borisov <alexander.borisov@nginx.com>
parents: 802
diff changeset
13 "license": "Apache-2.0",
868
fd323ad9e24f Node.js: removed unused dependency.
Valentin Bartenev <vbart@nginx.com>
parents: 816
diff changeset
14 "gypfile": true
802
fb9a6392d04a Added Node.js support.
Alexander Borisov <alexander.borisov@nginx.com>
parents:
diff changeset
15 }