forked from typings/typings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "typings",
"version": "2.1.1",
"description": "The TypeScript Definition Manager",
"main": "dist/bin.js",
"bin": {
"typings": "dist/bin.js"
},
"files": [
"dist/",
"typings.json"
],
"scripts": {
"lint": "tslint 'src/**/*.ts'",
"build": "rimraf dist/ && tsc",
"docs": "node scripts/docs-commands.js",
"dependency-check": "dependency-check . --entry dist/bin.js --missing --no-dev && dependency-check . --entry dist/bin.js --unused --no-dev -i bluebird",
"test": "npm run lint && npm run build && npm run dependency-check",
"prepublish": "node -e \"require('typings-core').install({ cwd: process.cwd() })\" && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/typings/typings.git"
},
"keywords": [
"typings",
"typescript",
"definition",
"declaration",
"package",
"manager",
"typed"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/typings/typings/issues"
},
"homepage": "https://github.com/typings/typings",
"dependencies": {
"archy": "^1.0.0",
"bluebird": "^3.1.1",
"chalk": "^2.0.0",
"cli-truncate": "^1.0.0",
"columnify": "^1.5.2",
"elegant-spinner": "^1.0.1",
"has-unicode": "^2.0.1",
"listify": "^1.0.0",
"log-update": "^2.0.0",
"minimist": "^1.2.0",
"promise-finally": "^3.0.0",
"typings-core": "^2.3.3",
"update-notifier": "^2.0.0",
"wordwrap": "^1.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"dependency-check": "^2.5.1",
"nock": "^9.0.0",
"rimraf": "^2.5.2",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"tslint-config-standard": "^6.0.0",
"typescript": "^2.1.4"
}
}