-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 893 Bytes
/
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
{
"name": "es6-promise-inspect",
"version": "2.0.0",
"description": "A utility for inspecting the state of ES6 promises",
"main": "lib/inspect.js",
"scripts": {
"tsc": "tsc",
"test": "node node_modules/mocha/bin/mocha spec --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massimocode/es6-promise-inspect.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/massimocode/es6-promise-inspect/issues"
},
"homepage": "https://github.com/massimocode/es6-promise-inspect#readme",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.12",
"bluebird": "^3.4.0",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"q": "^1.4.1",
"typescript": "^3.2.2"
},
"typings": "lib/inspect.d.ts",
"files": [
"lib/inspect.js",
"lib/inspect.d.ts",
"README.md"
]
}