-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
105 lines (105 loc) · 3.29 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@author.io/shell",
"version": "1.9.2",
"description": "A micro-framework for creating CLI-like experiences. This supports Node.js and browsers.",
"main": "./src/index.js",
"module": "./index.js",
"exports": {
"import": "./index.js",
"default": "./index.js"
},
"browser": "./index.js",
"scripts": {
"start": "dev workspace",
"test": "npm run test:node && npm run test:deno && npm run test:browser && npm run report:syntax && npm run report:size",
"test:node": "dev test -rt node tests/*.js",
"test:node:sanity": "dev test -rt node tests/01-sanity.js",
"test:node:base": "dev test -rt node tests/02-base.js",
"test:node:relationships": "dev test -rt node tests/06-relationships.js",
"test:node:regression": "dev test -rt node tests/100-regression.js",
"test:browser": "dev test -rt browser tests/*.js",
"test:browser:sanity": "dev test -rt browser tests/01-sanity.js",
"test:browser:base": "dev test -rt browser tests/02-base.js",
"test:deno": "dev test -rt deno tests/*.js",
"test:deno:sanity": "dev test -rt deno tests/01-sanity.js",
"manually": "dev test -rt manual tests/*.js",
"build": "dev build --verbose",
"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.\"",
"ci": "dev test --verbose --mode ci --peer -rt node tests/*.js && dev test --mode ci -rt deno tests/*.js && dev test --mode ci -rt browser tests/*.js",
"x": "esbuild ./src/index.js --format esm --bundle --minify --outfile=.dist/shell/index.js"
},
"keywords": [
"cli",
"args",
"arg",
"shell"
],
"repository": {
"type": "git",
"url": "https://github.com/author/shell"
},
"dev": {
"ignorecircular": [
"src/command.js",
"src/shell.js"
],
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"volume": [
"./node_modules/@author.io/arg:/node_modules/@author.io/arg",
"./node_modules/@author.io/table:/node_modules/@author.io/table"
],
"alias": {
"@author.io/shell": "/app/.dist/@author.io/shell/index.js",
"@author.io/arg": "/node_modules/@author.io/arg/index.js",
"@author.io/table": "/node_modules/@author.io/table/index.js"
},
"ci": {
"verbose": true,
"peer": true,
"embed": [
"@author.io/arg",
"@author.io/table"
]
}
},
"author": {
"name": "Corey Butler",
"url": "http://coreybutler.com"
},
"license": "MIT",
"type": "module",
"files": [
"*.js"
],
"engines": {
"node": ">=13.5.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"_*",
"_**/*",
".**/*",
"node_modules",
"karma.conf.js",
"karma.conf.cjs",
"build.js"
],
"globals": [
"window",
"global",
"globalThis"
]
},
"devDependencies": {
"esbuild": "^0.14.10",
"@author.io/arg": "^1.3.23",
"@author.io/dev": "^1.1.5",
"@author.io/table": "^1.0.3"
}
}