-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
{
"name": "args.ts",
"version": "1.2.1",
"description": "Argument parsing, built for TypeScript.",
"main": "lib/index.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "nodemon lib/index.js",
"dev": "concurrently --kill-others --prefix [{name}] --names tsc,cleaner,node 'npm:build:watch' 'npm:cleaner' 'npm:start'",
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"cleaner": "ts-cleaner --dist lib --watch",
"test": "jest --testPathIgnorePatterns 'ensure-examples-compile.test.ts'",
"test:full": "npm run build && jest && npm run test:types",
"test:types": "jest --config jest.config.tsd.js",
"test:types:watch": "jest --config jest.config.tsd.js --watch",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --config jest.coverage.js",
"test:coverage:watch": "npm run test -- --watchAll --config jest.coverage.js",
"lint": "eslint . --ext .ts",
"doc": "typedoc --out docs src",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullishamy/args-ts.git"
},
"author": "nullishamy",
"license": "OSL-3.0",
"bugs": {
"url": "git+https://github.com/nullishamy/args-ts.git/issues"
},
"homepage": "https://github.com/nullishamy/args-ts#readme",
"devDependencies": {
"@tsd/typescript": "^5.2.2",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"concurrently": "^7.4.0",
"eslint": "^8.23.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-runner-tsd": "^6.0.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"ts-cleaner": "^1.0.5",
"ts-jest": "^29.0.1",
"typedoc": "^0.23.15",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.(ts|js)": "eslint --cache --fix"
}
}