-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.62 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
{
"name": "tsd",
"version": "0.13.1",
"description": "Check TypeScript type definitions",
"license": "MIT",
"repository": "SamVerschueren/tsd",
"author": {
"name": "Sam Verschueren",
"email": "sam.verschueren@gmail.com",
"url": "github.com/SamVerschueren"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "dist/cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run build && cpy \"./**/**\" \"../../../dist/test/fixtures/\" --parents --cwd=source/test/fixtures",
"test": "npm run lint && ava",
"build": "npm run clean && tsc && chmod +x dist/cli.js",
"clean": "del-cli dist",
"lint": "tslint -p . --format stylish"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/cli.js",
"dist/lib",
"libraries"
],
"keywords": [
"typescript",
"tsd",
"check",
"typings",
"types",
"typedefs",
"typedefinitions"
],
"dependencies": {
"eslint-formatter-pretty": "^4.0.0",
"globby": "^11.0.1",
"meow": "^7.0.1",
"path-exists": "^4.0.0",
"read-pkg-up": "^7.0.0",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^14.0.0",
"@types/react": "^16.9.2",
"@types/update-notifier": "^4.1.0",
"ava": "^3.8.2",
"cpy-cli": "^3.0.0",
"del-cli": "^3.0.0",
"execa": "^4.0.0",
"react": "^16.9.0",
"rxjs": "^6.5.3",
"tslint": "^5.11.0",
"tslint-xo": "^0.9.0",
"typescript": "^3.9.6"
},
"ava": {
"timeout": "2m",
"files": [
"source/test/**/*",
"!source/test/fixtures/**/*"
],
"typescript": {
"rewritePaths": {
"source/": "dist/"
}
}
}
}