This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
90 lines (90 loc) · 2.54 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
{
"name": "typings-core",
"version": "2.3.3",
"description": "The logic of Typings",
"main": "dist/typings.js",
"files": [
"dist/",
"typings.json",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\" -e \"**/__test__/**\"",
"build": "rimraf dist && tsc",
"dependency-check": "dependency-check . --unused --no-dev && dependency-check . --missing --no-dev",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
"test-cov": "ts-node node_modules/istanbul/lib/cli.js cover -e .ts --print none -x \"*.d.ts\" -x \"*.spec.ts\" node_modules/blue-tape/bin/blue-tape.js -- \"src/**/*.spec.ts\"",
"test": "npm run build && npm run dependency-check && npm run test-cov && npm run lint",
"bootstrap": "npm install shelljs --no-save && node scripts/bootstrap.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/typings/core.git"
},
"keywords": [
"typings",
"core",
"typescript",
"definition",
"declaration",
"package",
"manager"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/typings/core/issues"
},
"homepage": "https://github.com/typings/core",
"dependencies": {
"array-uniq": "^1.0.2",
"configstore": "^3.0.0",
"debug": "^2.2.0",
"detect-indent": "^5.0.0",
"graceful-fs": "^4.1.2",
"has": "^1.0.1",
"invariant": "^2.2.0",
"is-absolute": "^0.2.3",
"jspm-config": "^0.3.0",
"listify": "^1.0.0",
"lockfile": "^1.0.1",
"make-error-cause": "^1.2.1",
"mkdirp": "^0.5.1",
"object.pick": "^1.1.1",
"parse-json": "^2.2.0",
"popsicle": "^9.0.0",
"popsicle-proxy-agent": "^3.0.0",
"popsicle-retry": "^3.2.0",
"popsicle-rewrite": "^1.0.0",
"popsicle-status": "^2.0.0",
"promise-finally": "^3.0.0",
"rc": "^1.1.5",
"rimraf": "^2.4.4",
"sort-keys": "^2.0.0",
"string-template": "^1.0.0",
"strip-bom": "^3.0.0",
"thenify": "^3.1.0",
"throat": "^4.0.0",
"touch": "^1.0.0",
"typescript": "^2.1.4",
"xtend": "^4.0.0",
"zip-object": "^0.1.0"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"bluebird": "^3.3.4",
"dependency-check": "^2.5.1",
"istanbul": "1.0.0-alpha.2",
"nock": "^9.0.0",
"shelljs": "^0.7.7",
"tap-diff": "^0.1.1",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"tslint-config-standard": "^6.0.0"
}
}