-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "cli-table-2-json",
"version": "1.0.13",
"description": "Convert command line table output into json object",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/",
"typings.json"
],
"scripts": {
"lint": "tslint src/**/*.ts",
"dependency-check": "dependency-check package.json",
"build": "rimraf dist/ && tsc",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
"test": "npm run lint && npm run build && npm run test-spec",
"testall": "npm run lint && npm run build && npm run dependency-check && npm run test-spec",
"bootstrap": "npm install shelljs && node scripts/bootstrap.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quobject/cli-table-2-json.git"
},
"keywords": [
"table"
],
"author": "Matthias Ludwig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quobject/cli-table-2-json/issues"
},
"homepage": "https://github.com/Quobject/cli-table-2-json",
"devDependencies": {
"blue-tape": "^0.2.0",
"bluebird": "^3.4.0",
"dependency-check": "^2.5.1",
"rimraf": "^2.5.2",
"shelljs": "^0.7.0",
"tap-diff": "^0.1.1",
"ts-node": "^0.7.3",
"tslint": "^3.10.2",
"typescript": "^2.3.2"
},
"dependencies": {
"@types/blue-tape": "^0.1.30",
"@types/lodash": "4.14.119",
"lodash": "^4.17.15"
}
}