-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "simple-data-table",
"description": "🔨 Lightweight and simple data table with no dependencies",
"version": "1.3.7",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "[email protected]",
"url": "https://piecioshka.pl/"
},
"scripts": {
"clear": "rm -rf coverage/ .nyc_output/ coverage.lcov",
"clear:all": "rm -rf node_modules/ && npm run clear",
"test": "ava test/specs/",
"coverage": "nyc npm run test && nyc report --reporter=html",
"lint": "eslint ."
},
"devDependencies": {
"ava": "^5.3.1",
"eslint": "^8.51.0",
"eslint-config-piecioshka": "^2.2.4",
"jsdom": "^22.1.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/piecioshka/simple-data-table.git"
},
"files": [
"src",
"package.json",
"README.md"
],
"keywords": [
"simple",
"customizable",
"configurable",
"powerful",
"data",
"table",
"display",
"gui",
"browser",
"lightweight",
"no dependencies"
],
"main": "./src/index.js"
}