1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-04 07:33:18 +02:00
TableFilter/package.json

80 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "tablefilter",
2019-12-09 04:44:37 +01:00
"version": "0.6.105",
"description": "A Javascript library making HTML tables filterable and a bit more",
"license": "MIT",
"author": {
"name": "Max Guglielmi",
"url": "https://github.com/koalyptus"
},
"repository": {
"type": "git",
"url": "https://github.com/koalyptus/TableFilter.git"
},
"keywords": [
"filter",
"table",
"javascript",
"filterable",
"grid",
"datagrid",
"sort",
"pagination"
],
"scripts": {
2018-01-12 12:39:49 +01:00
"lint": "eslint src/**/*.js test/*.js *.js",
2018-03-02 13:24:16 +01:00
"dev": "webpack --colors --config webpack.dev.config.js",
2018-03-02 07:12:15 +01:00
"build": "webpack --colors --config webpack.config.js",
2018-03-18 02:59:33 +01:00
"build:css": "stylus -c static/style/tablefilter.styl -o dist/tablefilter/style && stylus -c static/style/extensions -o dist/tablefilter/style && stylus -c static/style/themes/default -o dist/tablefilter/style/themes/default && stylus -c static/style/themes/mytheme -o dist/tablefilter/style/themes/mytheme && stylus -c static/style/themes/skyblue -o dist/tablefilter/style/themes/skyblue && stylus -c static/style/themes/transparent -o dist/tablefilter/style/themes/transparent",
"build:demos": "grunt build-demos",
2018-03-02 13:24:16 +01:00
"build:test": "webpack --colors --config webpack.test.config.js",
"server": "webpack-dev-server --colors --hot --config ./webpack.dev.config.js",
"test": "grunt test",
"codecov": "./node_modules/.bin/codecov",
"esdoc": "esdoc",
"dist": "grunt",
"build:all": "grunt build-all",
2016-11-26 07:43:59 +01:00
"start": "npm run server"
},
"publishConfig": {
"tag": "next"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"babel-eslint": "10.0.2",
"babel-loader": "^8.0.2",
2018-05-20 13:43:20 +02:00
"babel-preset-env": "1.7.0",
"clean-webpack-plugin": "^3.0.0",
"codecov": "3.6.1",
"diacritics": "1.3.0",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "6.5.0",
"format-number": "3.0.0",
"grunt": "^1.0.1",
"grunt-cli": "1.3.2",
2018-09-12 16:10:07 +02:00
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-qunit-istanbul": "1.1.0",
"grunt-shell": "3.0.0",
2016-10-01 14:43:43 +02:00
"grunt-string-replace": "^1.3.1",
"isparta-loader": "2.0.0",
"script-loader": "^0.7.0",
2017-06-27 14:00:59 +02:00
"string-replace-webpack-plugin": "^0.1.3",
2018-03-16 06:21:41 +01:00
"stylus": "^0.54.5",
"sugar-date": "2.0.6",
"uglifyjs-webpack-plugin": "2.2.0",
2019-07-30 04:59:37 +02:00
"webpack": "^4.38.0",
2018-06-17 13:21:41 +02:00
"webpack-cli": "^3.0.8",
2019-01-06 10:27:50 +01:00
"webpack-dev-server": "^3.1.11"
},
2018-08-08 14:25:55 +02:00
"dependencies": {},
"bugs": {
"url": "https://github.com/koalyptus/TableFilter/issues"
},
2018-05-18 08:05:55 +02:00
"homepage": "https://www.tablefilter.com"
}