selectabular
Advanced tools
Comparing version 0.2.1 to 0.2.2
{ | ||
"name": "selectabular", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Selection utilities", | ||
"scripts": { | ||
"test:all": "npm test && npm run test:lint", | ||
"test": "jest --", | ||
@@ -10,5 +11,4 @@ "test:coverage": "jest --coverage --", | ||
"test:watch": "jest --watch --", | ||
"dist:all": "npm run dist:build && npm run dist:build-min", | ||
"dist:build": "webpack", | ||
"dist:build-min": "webpack" | ||
"preversion": "npm run test:all && npm run dist:build && git commit --allow-empty -am \"Update dist\"" | ||
}, | ||
@@ -41,4 +41,4 @@ "main": "dist/selectabular.js", | ||
"name": "Juho Vepsalainen", | ||
"email": "brebaw@gmail.com", | ||
"url": "http://github.com/brebaw" | ||
"email": "bebraw@gmail.com", | ||
"url": "http://github.com/bebraw" | ||
}, | ||
@@ -57,23 +57,22 @@ { | ||
"devDependencies": { | ||
"babel-core": "^6.17.0", | ||
"babel-eslint": "^7.0.0", | ||
"babel-jest": "^16.0.0", | ||
"babel-loader": "^6.2.5", | ||
"babel-preset-es2015": "^6.16.0", | ||
"babel-preset-stage-0": "^6.16.0", | ||
"eslint": "^3.7.1", | ||
"eslint-config-airbnb": "^12.0.0", | ||
"eslint-plugin-import": "^1.16.0", | ||
"babel-core": "^6.18.2", | ||
"babel-eslint": "^7.1.1", | ||
"babel-jest": "^17.0.2", | ||
"babel-loader": "^6.2.8", | ||
"babel-plugin-syntax-object-rest-spread": "^6.13.0", | ||
"babel-plugin-transform-object-rest-spread": "^6.19.0", | ||
"babel-preset-es2015": "^6.18.0", | ||
"eslint": "^3.10.2", | ||
"eslint-config-airbnb": "^13.0.0", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-jsx-a11y": "^2.2.3", | ||
"eslint-plugin-react": "^6.4.0", | ||
"eslint-plugin-react": "^6.7.1", | ||
"git-prepush-hook": "^1.0.1", | ||
"jest": "^16.0.2", | ||
"webpack": "^1.13.2", | ||
"webpack-dev-server": "^1.16.2" | ||
"jest": "^17.0.3", | ||
"webpack": "^1.13.3" | ||
}, | ||
"pre-push": [ | ||
"test:lint", | ||
"test", | ||
"dist:all" | ||
"test" | ||
] | ||
} |
@@ -30,3 +30,3 @@ [![build status](https://secure.travis-ci.org/reactabular/selectabular.svg)](http://travis-ci.org/reactabular/selectabular) [![bitHound Score](https://www.bithound.io/github/reactabular/selectabular/badges/score.svg)](https://www.bithound.io/github/reactabular/selectabular) [![codecov](https://codecov.io/gh/reactabular/selectabular/branch/master/graph/badge.svg)](https://codecov.io/gh/reactabular/selectabular) | ||
const initRows = [ | ||
{ id: 10, selected:true, product: 'apple', company: 'Apple Inc', price: 1.5, stock: 300 }, | ||
{ id: 10, selected: true, product: 'apple', company: 'Apple Inc', price: 1.5, stock: 300 }, | ||
{ id: 11, product: 'pear', company: 'Pear Inc', price: 3, stock: 1000 }, | ||
@@ -45,6 +45,6 @@ { id: 12, product: 'grape', company: 'Grapesoft', price: 22.1, stock: 18 }, | ||
[ | ||
{ id: 10, selected:true, product: 'apple', company: 'Apple Inc', price: 1.5, stock: 300 }, | ||
{ id: 10, selected: true, product: 'apple', company: 'Apple Inc', price: 1.5, stock: 300 }, | ||
{ id: 11, product: 'pear', company: 'Pear Inc', price: 3, stock: 1000 }, | ||
{ id: 12, selected:true, product: 'grape', company: 'Grapesoft', price: 22.1, stock: 18 }, | ||
{ id: 13, selected:true, product: 'banana', company: 'Banana Tech', price: 12, stock: 9 } | ||
{ id: 12, selected: true, product: 'grape', company: 'Grapesoft', price: 22.1, stock: 18 }, | ||
{ id: 13, selected: true, product: 'banana', company: 'Banana Tech', price: 12, stock: 9 } | ||
]; | ||
@@ -51,0 +51,0 @@ ``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10555