-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "@sachinkiranti/easy-table-a11y",
"version": "1.0.2",
"description": "Easy Responsive HTML Table",
"main": "dist/easy-table.min.js",
"repository": {
"type": "git",
"url": "https://github.com/sachinkiranti/easy-table-A11y.git"
},
"scripts": {
"clean": "rimraf build && rimraf coverage",
"build": "npm run compile && npm run copy:html && npm run bundle && npm run minify",
"compile": "tsc",
"copy:html": "cpx src/**.html dist && cpx build/easy-table.** dist",
"test": "karma start",
"bundle": "rollup -c",
"minify": "uglifyjs build/easy-table.js --output dist/easy-table.min.js"
},
"keywords": [
"jquery",
"jquery-plugin",
"html-table",
"table-responsive"
],
"author": "Sachin Kiranti <[email protected]> (https://raisachin.com.np/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sachinkiranti/easy-table-A11y/issues"
},
"dependencies": {
"jquery": "^3.7.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@types/jasmine": "^4.0.3",
"@types/jquery": "^3.5.16",
"cpx": "^1.5.0",
"jasmine-core": "^4.1.0",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.0.0",
"karma-typescript": "^5.5.3",
"puppeteer": "^13.7.0",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^4.9.5",
"uglify-js": "^3.15.4"
}
}