-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.26 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
{
"name": "ts-dedupe",
"version": "0.3.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ts-dedupe": "dist/bin/de-dupe.js"
},
"scripts": {
"clean": "rimraf dist test-dedupe",
"prebuild": "npm run clean",
"build": "tsc",
"build:watch": "tsc --watch",
"copy-samples": "copyfiles -u 1 \"./sample-types/**/*\" test-dedupe",
"prestart": "npm run build && npm run copy-samples",
"start": "node dist/bin/de-dupe.js -p test-dedupe/tsconfig.json -d test-dedupe/contracts/shared.d.ts -b test-dedupe/index.ts",
"lint": "eslint . --ext .ts,.d.ts,.js",
"lint:fix": "eslint . --ext .ts,.d.ts,.js --fix",
"write-markdown": "write-markdown -f write-markdown.config.json",
"verify-markdown": "write-markdown -f write-markdown.config.json -v",
"prepublishOnly": "npm run build && npm run lint && npm run verify-markdown",
"test": "jest --ci",
"test:watch": "jest --watch"
},
"author": "Giles Roadnight",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.0",
"ts-command-line-args": "^1.8.1",
"ts-morph": "^10.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"copyfiles": "^2.4.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roaders/ts-dedupe.git"
},
"keywords": [
"typescript",
"dedupe",
"interface"
],
"bugs": {
"url": "https://github.com/Roaders/ts-dedupe/issues"
},
"homepage": "https://github.com/Roaders/ts-dedupe#readme",
"description": "A cli tool to move duplicated types and interfaces to a single file."
}