forked from typings/typings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "typings",
"version": "0.6.3",
"description": "The TypeScript definition manager",
"main": "dist/typings.js",
"preferGlobal": true,
"bin": {
"typings": "dist/bin/typings.js"
},
"files": [
"dist/",
"typings.json",
"LICENSE"
],
"scripts": {
"lint": "# tslint \"src/**/*.ts\"",
"build": "rm -rf dist/ && tsc",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-spec",
"test-cov": "ts-node node_modules/istanbul/lib/cli.js cover -e .ts --print none -x \"*.d.ts\" -x \"*.spec.ts\" blue-tape -- \"src/**/*.spec.ts\" | tap-spec",
"test": "npm run lint && npm run test-cov",
"bootstrap": "mkdir -p typings && touch typings/main.d.ts && SKIP_PREPUBLISH=true npm install && npm run build 2> /dev/null; cat dist/init.js > /dev/null && node dist/bin/typings.js install",
"prepublish": "if [ ! $SKIP_PREPUBLISH ]; then npm run build; fi"
},
"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",
"array-uniq": "^1.0.2",
"bluebird": "^3.1.1",
"chalk": "^1.0.0",
"columnify": "^1.5.2",
"debug": "^2.2.0",
"detect-indent": "^4.0.0",
"elegant-spinner": "^1.0.1",
"graceful-fs": "^4.1.2",
"has": "^1.0.1",
"inquirer": "^0.11.0",
"insight": "^0.7.0",
"invariant": "^2.2.0",
"is-absolute": "^0.2.3",
"lockfile": "^1.0.1",
"log-update": "^1.0.2",
"make-error-cause": "^1.0.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"native-or-bluebird": "^1.2.0",
"object-pick": "^0.1.1",
"parse-json": "^2.2.0",
"popsicle": "^3.0.2",
"popsicle-cache": "^3.0.0",
"popsicle-status": "^1.0.0",
"promise-finally": "^2.0.1",
"proxy-agent": "^2.0.0",
"rc": "^1.1.5",
"rimraf": "^2.4.4",
"semver": "^5.0.1",
"sort-keys": "^1.0.0",
"string-template": "^1.0.0",
"strip-bom": "^2.0.0",
"thenify": "^3.1.0",
"touch": "^1.0.0",
"typescript": "^1.7.5",
"update-notifier": "^0.6.0",
"util-partial": "^1.0.0",
"wordwrap": "^1.0.0",
"xtend": "^4.0.0",
"zip-object": "^0.1.0"
},
"devDependencies": {
"blue-tape": "^0.1.11",
"istanbul": "1.0.0-alpha.2",
"nock": "^7.0.2",
"pre-commit": "^1.0.6",
"tap-spec": "^4.1.1",
"ts-node": "^0.5.4",
"tslint": "^3.2.1"
}
}