-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
49
50
51
52
53
54
55
56
{
"name": "table-actions",
"version": "0.1.17",
"private": true,
"description": "Simple & customizable table with sort and checkbox functions in vanilla JS",
"amdName": "TableActions",
"exports": {
"default": "./dist/table-actions.min.js"
},
"scripts": {
"build": "microbundle -o dist/table-actions.min.js -f umd --sourcemap false --no-pkg-main",
"eslint": "eslint 'src/*.js'",
"prettier": "prettier --write .",
"test": "jest --detectOpenHandles --forceExit",
"test-watch": "jest --detectOpenHandles --watchAll",
"watch": "microbundle -o dist/table-actions.min.js -f umd --sourcemap true --no-pkg-main watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcmatias/table-actions.git"
},
"files": [
"dist/table-actions.min.js",
"dist/table-actions.min.css",
"LICENSE",
"README.md"
],
"keywords": [
"table",
"pagination",
"sortable"
],
"browserslist": "> 0.5%, last 2 versions, not dead",
"author": "Pythonic Café",
"license": "(LGPL-3.0)",
"bugs": {
"url": "https://github.com/marcmatias/table-actions/issues"
},
"homepage": "https://github.com/marcmatias/table-actions#readme",
"jest": {
"setupFilesAfterEnv": [
"./jestGlobalSetup.js"
]
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.2.2",
"lite-server": "^2.6.1",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"puppeteer": "^19.2.0",
"sass": "^1.56.1"
},
"dependencies": {}
}