-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "boltsh",
"description": "Bolt Cypher Shell",
"version": "0.0.0",
"author": "Michael Hunger @jexp",
"bin": {
"boltsh": "./bin/run"
},
"bugs": "https://github.com/jexp/boltsh/issues",
"dependencies": {
"@oclif/command": "^1.4.6",
"@oclif/config": "^1.3.62",
"@oclif/plugin-help": "^1.2.2",
"ascii-table": "^0.0.9",
"neo4j-driver": "^1.5.3"
},
"devDependencies": {
"@oclif/test": "^1.0.1",
"@oclif/tslint": "^1.0.2",
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.1",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"ts-node": "5",
"tslib": "^1.9.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/jexp/boltsh",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "boltsh"
},
"repository": "jexp/boltsh",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "tsc -p test --noEmit && tslint -p test -t stylish",
"posttest": "yarn run lint",
"prepublishOnly": "yarn run build",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}