-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
{
"name": "tsd",
"version": "0.11.0",
"description": "Check TypeScript type definitions",
"license": "MIT",
"repository": "SamVerschueren/tsd",
"author": {
"name": "Sam Verschueren",
"email": "[email protected]",
"url": "github.com/SamVerschueren"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "dist/cli.js",
"engines": {
"node": ">=6"
},
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run build && cpy \"./**/**\" \"../../../dist/test/fixtures/\" --parents --cwd=source/test/fixtures",
"test": "npm run lint && ava dist/test/test.js -T 60s",
"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": "^1.3.0",
"globby": "^9.1.0",
"meow": "^6.1.1",
"path-exists": "^3.0.0",
"read-pkg-up": "^4.0.0",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@types/node": "^11.10.4",
"@types/react": "^16.9.2",
"@types/update-notifier": "^4.1.0",
"ava": "^3.8.1",
"cpy-cli": "^3.1.1",
"del-cli": "^1.1.0",
"execa": "^3.3.0",
"react": "^16.9.0",
"rxjs": "^6.5.3",
"tslint": "^5.11.0",
"tslint-xo": "^0.9.0",
"typescript": "^3.6.3"
}
}