-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.41 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
{
"name": "table-cli-flipper",
"version": "1.0.3",
"description": "A simple cyan colored table for your data that allows you to format columns and flip your data.",
"main": "lib/index",
"typings": "definitions/index",
"typescript": {
"definition": "definitions/index"
},
"scripts": {
"test": "mocha",
"tsc:watch": "tsc --watch",
"generate:readme": "node ./readme/index.js",
"deployDev": "tsc --listEmittedFiles && npm run test && npm run generate:readme && git add -A && git commit -a -m \"deploy tsc build\" && npm version patch && git pull --progress -v --no-rebase \"origin\" && git push --tags --progress \"origin\" master:master",
"test-table-flip": "nodemon",
"test-table-normal": "nodemon --config nodemon.normal.json"
},
"keywords": [
"table",
"simple table",
"table flip",
"node table"
],
"repository": {
"type": "git",
"url": "git+https://github.com/darklightcode/table-cli-flipper.git"
},
"author": "darklightcode <https://github.com/darklightcode> (https://github.com/darklightcode)",
"license": "MIT",
"bugs": {
"url": "https://github.com/darklightcode/table-cli-flipper/issues"
},
"homepage": "https://github.com/darklightcode/table-cli-flipper#readme",
"dependencies": {
"chalk": "^2.4.1"
},
"devDependencies": {
"@types/node": "^10.9.4",
"mocha": "^5.2.0",
"semver": "^5.5.1",
"typescript": "^3.0.3"
}
}