forked from typings/typings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "typings",
"version": "1.3.2",
"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": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/typings/typings/issues"
},
"homepage": "https://github.com/typings/typings",
"dependencies": {
"any-promise": "^1.0.0",
"archy": "^1.0.0",
"bluebird": "^3.1.1",
"chalk": "^1.0.0",
"columnify": "^1.5.2",
"listify": "^1.0.0",
"minimist": "^1.2.0",
"typings-core": "^1.4.0",
"update-notifier": "^1.0.0",
"wordwrap": "^1.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"dependency-check": "^2.5.1",
"nock": "^8.0.0",
"rimraf": "^2.5.2",
"ts-node": "^1.0.0",
"tslint": "^3.5.0",
"tslint-config-standard": "^1.0.0",
"typescript": "^1.8.7"
}
}