-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.31 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
{
"name": "@author.io/arg",
"version": "1.3.22",
"description": "An argument parser for CLI applications.",
"main": "./src/index.js",
"exports": {
"import": "./index.js",
"default": "./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:regression": "dev test -rt node tests/09-regression.js",
"test:browser": "dev test -rt browser tests/*.js",
"test:browser:sanity": "dev test -rt browser tests/01-sanity.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",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/author/arg.git"
},
"keywords": [
"argv",
"arg",
"cli",
"parser",
"argument",
"command"
],
"author": "Corey Butler",
"license": "MIT",
"bugs": {
"url": "https://github.com/author/arg/issues"
},
"engines": {
"node": ">=12.0.0"
},
"type": "module",
"files": [
"*.js"
],
"homepage": "https://github.com/author/arg#readme",
"devDependencies": {
"@author.io/dev": "^1.1.5"
},
"dev": {
"alias": {
"@author.io/arg": "/app/.dist/arg/index.js"
}
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"_*",
"_**/*",
".**/*",
"node_modules",
"karma.conf.js",
"karma.conf.cjs",
"build.js"
],
"globals": [
"window",
"global",
"globalThis"
]
}
}