-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "indefinitely-typed",
"version": "1.1.0",
"description": "🐣 Incubate your TypeScript declarations",
"keywords": [
"TypeScript",
"DefinitelyTyped"
],
"bin": {
"indefinitely-typed": "./bin/cli2.js"
},
"main": "dist/index.js",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc -p ./src",
"watch": "tsc -p ./src -w",
"test": "cd test/node_modules/test && node ../../../bin/cli2.js --folder test-package-typings && node ../@types/test-package-typings/test-package/success.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danmarshall/indefinitely-typed.git"
},
"author": "Dan Marshall",
"license": "MIT",
"bugs": {
"url": "https://github.com/danmarshall/indefinitely-typed/issues"
},
"homepage": "https://github.com/danmarshall/indefinitely-typed#readme",
"dependencies": {
"fs-extra": "^8.0.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/minimist": "^1.2.0",
"@types/node": "^10.11.7",
"typescript": "^3.1.3"
}
}