forked from dependents/detective-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 857 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
36
{
"name": "detective-typescript",
"version": "5.1.1",
"author": "Patrik Henningsson <patrik.henningsson@gmail.com>",
"description": "Get the dependencies of a TypeScript module",
"main": "index.js",
"scripts": {
"test": "eslint index.js test/test.js && mocha test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pahen/detective-typescript.git"
},
"keywords": [
"detective",
"typescript",
"dependencies",
"module",
"ast",
"import"
],
"engines": {
"node": ">=6.0"
},
"license": "MIT",
"homepage": "https://github.com/pahen/detective-typescript",
"dependencies": {
"@typescript-eslint/typescript-estree": "1.4.2",
"node-source-walk": "^4.2.0",
"typescript": "3.3.3333"
},
"devDependencies": {
"eslint": "^5.12.0",
"mocha": "^5.2.0"
}
}