-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 784 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 784 Bytes
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
{
"name": "table-builder",
"version": "2.1.1",
"description": "Create HTML-tables from JSON",
"main": "index.js",
"scripts": {
"test": "ava",
"build": "webpack index.js -p --output-library-target=umd --output-library=TableBuilder tablebuilder.js"
},
"repository": {
"type": "git",
"url": "git://github.com/a-x-/table-builder.git"
},
"keywords": [
"html",
"builder",
"json",
"table",
"list",
"templating"
],
"author": "Invntrm <invntrm@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-x-/table-builder/issues"
},
"homepage": "https://github.com/a-x-/table-builder",
"private": false,
"devDependencies": {
"ava": "^0.19.0",
"html-differ": "^1.3.4",
"webpack": "^2.3.3"
}
}