Skip to content

Commit

Permalink
Merge pull request #1 from ninetynine/canary
Browse files Browse the repository at this point in the history
v1.0.0-canary.1
  • Loading branch information
dextermb committed Mar 29, 2020
2 parents 9dd2552 + e98164e commit 17cf407
Show file tree
Hide file tree
Showing 13 changed files with 4,484 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"presets": [
"minify",
"@babel/preset-react",
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": "3"
}
]
],
"comments": false
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
.vscode
.code
node_modules
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.babelrc
.gitignore
.idea
.vscode
.code
src
README.md
1 change: 1 addition & 0 deletions dist/ajax-table.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/helpers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/table.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"name": "@ninetynine/react-table",
"version": "1.0.0-canary.1",
"description": "A package that provides a managed React table for both static and dynamic data",
"author": "Dexter Marks-Barber <dexter@marks-barber.co.uk>",
"license": "LGPL-3.0-only",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run js:build",
"js:build": "node ./node_modules/@babel/cli/bin/babel src/ --out-dir dist/",
"js:lint": "standard",
"js:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ninetynine/react-table.git"
},
"keywords": [
"react",
"table",
"data table",
"html",
"dynamic",
"ajax",
"react-dom",
"react-use",
"component",
"static"
],
"bugs": {
"url": "https://github.com/ninetynine/react-table/issues"
},
"homepage": "https://github.com/ninetynine/react-table#readme",
"husky": {
"hooks": {
"pre-commit": "npm run js:lint && npm run js:build && git add dist"
}
},
"standard": {
"ignore": [
"dist"
]
},
"peerDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"dependencies": {
"axios": "^0.19.2",
"classnames": "^2.2.6",
"core-js": "3",
"prop-types": "^15.7.2",
"react-use": "^13.27.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-preset-minify": "^0.5.1",
"husky": "^4.2.3",
"standard": "^14.3.3"
}
}
Loading

0 comments on commit 17cf407

Please sign in to comment.