-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 940 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
{
"name": "nodestringtable",
"description": "A fork of the console.table and cli_table NodeJS source code which returns strings, and works in web browsers.",
"version": "1.0.2",
"license": "MIT",
"author": "Dani Glore (https://github.com/Floofies/)",
"contributors": [
"Ruben Bridgewater (https://github.com/BridgeAR)",
"Gus Caplan (https://github.com/devsnek)",
"Rich Trott (https://github.com/Trott)"
],
"repository": {
"type": "git",
"url": "git://github.com/Floofies/nodeStringTable.git"
},
"devDependencies": {
"browserify": "^16.2.3",
"uglify-es": "^3.3.9"
},
"scripts": {
"bundle": "browserify ./index.js -s nsTable -o ./dist/nsTable.js && uglifyjs ./dist/nsTable.js -o ./dist/nsTable.min.js",
"prepare": "npm run bundle"
},
"main": "index.js",
"unpkg": "dist/nsTable.min.js",
"files": [
"dist/nsTable.js",
"dist/nsTable.min.js"
],
"keywords": [
"console.table",
"table",
"tabular"
]
}