-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "@jessitron/explore-deps",
"version": "1.1.0",
"description": "Explore the npm dependencies of your package in a text-based dungeon crawl",
"repository": {
"type": "git",
"url": "git+https://github.com/jessitron/explore-deps.git"
},
"author": "jessitron",
"license": "ISC",
"bugs": {
"url": "https://github.com/jessitron/explore-deps/issues"
},
"homepage": "https://github.com/jessitron/explore-deps#readme",
"bin": {
"explore": "lib/cli/explore.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"boxen": "^1.3.0",
"chalk": "^2.4.1",
"inquirer": "^6.0.0",
"inquirer-autocomplete-prompt": "^0.12.2",
"lodash": "^4.17.10",
"semver": "^5.5.0",
"typescript": "^3.1.4"
},
"devDependencies": {
"@types/inquirer": "0.0.42",
"@types/lodash": "^4.14.111",
"@types/mocha": "^5.2.4",
"@types/node": "9.x",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^5.2.1"
},
"scripts": {
"test": "mocha --require ts-node/register 'src/**/*.test.ts' 'src/**/*.test.js'",
"compile": "tsc",
"lint": "tslint --format verbose --project tsconfig.json",
"lint:fix": "tslint --fix --format verbose --project tsconfig.json",
"clean": "rimraf lib",
"build": "npm-run-all clean compile test lint"
},
"engines": {
"node": ">= 9.11.2"
}
}