-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "clap",
"version": "3.1.1",
"description": "Command line argument parser",
"author": "Roman Dvornov <[email protected]>",
"repository": "lahmatiy/clap",
"license": "MIT",
"keywords": [
"cli",
"command",
"option",
"argument",
"completion"
],
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./cjs/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"cjs",
"lib"
],
"engines": {
"node": "^12.20.0 || ^14.13.0 || >=15.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"ansi-colors": "^4.1.1"
},
"devDependencies": {
"c8": "^7.11.0",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"rollup": "^2.67.1",
"test-console": "^2.0.0"
},
"scripts": {
"lint": "eslint lib test",
"lint-and-test": "npm run lint && npm test",
"test": "mocha --reporter ${REPORTER:-progress}",
"test:cjs": "mocha cjs-test --reporter ${REPORTER:-progress}",
"watch": "npm run build -- --watch",
"build": "npm run esm-to-cjs --",
"build-and-test": "npm run esm-to-cjs-and-test",
"esm-to-cjs": "node scripts/esm-to-cjs",
"esm-to-cjs-and-test": "npm run esm-to-cjs && npm run test:cjs",
"coverage": "c8 --reporter=lcovonly npm test",
"prepublishOnly": "npm run lint-and-test && npm run build-and-test"
}
}