forked from araujoigor/json-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@araujoigor/json-grid",
"version": "0.0.1",
"description": "A library to convert JSON files into interactive HTML grids (tables)",
"main": "dist/JSONGrid.js",
"unpkg": "dist/JSONGrid.min.js",
"scripts": {
"test": "jest . --passWithNoTests",
"lint": "eslint *.js",
"clean": "rm dist/* || true",
"build": "uglifyjs JSONGrid.js -o ./dist/JSONGrid.min.js -c -m && cp ./{json-grid.css,JSONGrid.js} dist/",
"prepublish": "npm run lint && npm run test && npm run clean && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/araujoigor/json-grid.git"
},
"keywords": [
"JSON",
"json-grid",
"json-table",
"JSON grid",
"JSON table",
"JSON to table"
],
"author": "Igor Araujo",
"license": "MIT",
"bugs": {
"url": "https://github.com/araujoigor/json-grid/issues"
},
"homepage": "https://github.com/araujoigor/json-grid#readme",
"devDependencies": {
"eslint": "^6.7.0",
"eslint-plugin-compat": "^3.3.0",
"jest": "^24.9.0",
"uglify-js": "^3.6.9"
},
"files": [
"dist"
],
"browserslist": [
"cover 99% and ie >= 9"
]
}