-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.43 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
{
"name": "@ngnjs/libnet-node",
"version": "1.0.0-alpha.2",
"description": "A plugin module for NGN.",
"type": "module",
"author": "Corey Butler\n",
"private": false,
"license": "MIT",
"homepage": "https://github.com/ngnjs/libnet-node",
"repository": {
"type": "git",
"url": "https://github.com/ngnjs/libnet-node"
},
"bugs": {
"url": "https://github.com/ngnjs/libnet-node/issues"
},
"module": "index.js",
"exports": {
".": {
"import": "./index.js"
}
},
"peerDependencies": {
"ngn": "^2.0.0-alpha.5",
"@ngnjs/plugin": ">=1.0.0-alpha.8",
"@ngnjs/libdata": "^1.0.0-alpha.1"
},
"devDependencies": {
"@author.io/dev": "^1.0.26"
},
"scripts": {
"test": "npm run test:node && npm run report:syntax && npm run report:size",
"start": "dev workspace",
"build": "dev build",
"test:node": "dev test -rt node 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 --verbose --mode ci --peer -rt node tests/*.js"
},
"dev": {
"mode": "source",
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"http_server": "./tests/assets/server.js",
"ci": {
"verbose": true,
"peer": true,
"alias": {
"ngn": "/node_modules/ngn/index.js",
"@ngnjs/plugin": "/node_modules/@ngnjs/plugin/index.js",
"@ngnjs/libdata": "/node_modules/@ngnjs/libdata/index.js",
"@ngnjs/libnet-node": "/app/.dist/libnet-node/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/src:/source/@ngnjs/libdata",
"../libdata/.dist/libdata:/node_modules/@ngnjs/libdata"
],
"alias": {
"@ngnjs/libnet-node": "/app/src/index.js"
}
}
},
"standard": {
"globals": [
"globalThis",
"window",
"global"
]
}
}