-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.32 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.32 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@ngnjs/net",
"version": "1.0.0-alpha.24",
"description": "A network communications plugin for NGN.",
"main": "./src/index.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"browser": "./index.js",
"type": "module",
"author": "Corey Butler",
"private": false,
"license": "MIT",
"homepage": "https://github.com/ngnjs/net",
"repository": {
"type": "git",
"url": "https://github.com/ngnjs/net.git"
},
"bugs": {
"url": "https://github.com/ngnjs/net/issues"
},
"peerDependencies": {
"ngn": "^2.0.0-alpha.9",
"@ngnjs/plugin": ">=1.0.0-alpha.9",
"@ngnjs/libnet-node": ">=1.0.0-alpha",
"@ngnjs/libdata": ">=1.0.0-alpha.1",
"@ngnjs/libcrypto": ">=1.0.0-alpha.9"
},
"devDependencies": {
"@author.io/dev": "^1.1.6",
"@ngnjs/net-debug": "^1.0.0-alpha",
"@ngnjs/plugin": "^1.0.0-alpha",
"@ngnjs/plugin-debug": "^1.0.0-alpha",
"@ngnjs/libcrypto": "^1.0.0-alpha.9"
},
"scripts": {
"test": "npm run test:node && npm run test:deno && npm run test:browser && npm run report:syntax && npm run report:size",
"start": "dev workspace",
"build": "dev build",
"test:node": "dev test -rt node tests/*.js",
"test:node:fetch": "dev test -rt node tests/*-fetch.js",
"test:request:node": "dev test -rt node tests/*-request.js",
"test:resource:node": "dev test -rt node tests/*-resource.js",
"test:client:node": "dev test -rt node tests/*-client.js",
"test:deno": "dev test -rt deno tests/*.js",
"test:request:deno": "dev test -rt deno tests/*-request.js",
"test:client:deno": "dev test -rt deno tests/*-client.js",
"test:resource:deno": "dev test -rt deno tests/*-resource.js",
"test:browser": "dev test -rt browser tests/*.js",
"test:request:browser": "dev test -rt browser tests/*-request.js",
"test:client:browser": "dev test -rt browser tests/*-client.js",
"test:resource:browser": "dev test -rt browser tests/*-resource.js",
"manually": "dev test -rt manual tests/*.js",
"report:syntax": "dev report syntax --pretty",
"report:size": "dev report size ./.dist/**/*.js ./.dist/**/*.js.map",
"report:compat": "dev report compatibility ./src/**/*.js",
"report:preview": "npm pack --dry-run && echo \"==============================\" && echo \"This report shows what will be published to the module registry. Pay attention to the tarball contents and assure no sensitive files will be published.\"",
"update": "npm update --save --save-dev --save-optional",
"ci": "dev test --mode ci --peer -rt browser tests/*.js",
"build:base": "dev build --mode ci"
},
"dev": {
"mode": "source",
"http_server": "./tests/assets/server.js",
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"autoimport": [
"import NGN from 'ngn'"
],
"ci": {
"verbose": true,
"peer": true,
"embed": [
"@ngnjs/plugin",
"@ngnjs/libdata"
],
"buildoption": {
"preserveEntrySignatures": true
},
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/libdata": "/node_modules/@ngnjs/libdata/index.js",
"@ngnjs/plugin": "/node_modules/@ngnjs/plugin/index.js",
"@ngnjs/libnet-node": "/node_modules/@ngnjs/libnet-node/index.js",
"@ngnjs/net": "/app/.dist/net/index.js"
}
},
"source": {
"volume": [
"../core/.dist/ngn:/node_modules/ngn",
"../core/src:/source/ngn",
"../plugin/.dist/plugin:/node_modules/@ngnjs/plugin",
"../plugin/src:/source/@ngnjs/plugin",
"../libdata/.dist/libdata:/node_modules/@ngnjs/libdata",
"../libdata/src:/source/@ngnjs/libdata",
"../libnet-node/.dist/libnet-node:/node_modules/@ngnjs/libnet-node",
"../libnet-node/src:/source/@ngnjs/libnet-node",
"../libcrypto/.dist/crypto:/node_modules/@ngnjs/libcrypto",
"../libcrypto/src:/source/@ngnjs/libcrypto"
],
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/plugin": "/source/@ngnjs/plugin/index.js",
"@ngnjs/libdata": "/source/@ngnjs/libdata/index.js",
"@ngnjs/libnet-node": "/source/@ngnjs/libnet-node/index.js",
"@ngnjs/net": "/app/src/index.js"
}
}
},
"standard": {
"globals": [
"globalThis",
"window",
"global"
]
}
}