This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,12 @@ | |
"version": "2.0.0", | ||
"author": "Viky Guerra <[email protected]>", | ||
"description": "Responsive utility wrapper for Facebook's Fixed-Data-Table", | ||
"main": "./lib/responsive-fixed-data-table.js", | ||
"main": "lib/responsive-fixed-data-table.js", | ||
"jsnext:main": "lib/responsive-fixed-data-table.es.js", | ||
"files": [ | ||
"lib", | ||
"src" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/vaiRk/responsive-fixed-data-table" | ||
|
@@ -44,6 +49,7 @@ | |
"karma-jasmine": "^0.3.7", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-webpack": "^1.7.0", | ||
"ncp": "^2.0.0", | ||
"react": "^0.14.7", | ||
"react-addons-test-utils": "^0.14.7", | ||
"react-dom": "^0.14.7", | ||
|
@@ -52,7 +58,10 @@ | |
}, | ||
"scripts": { | ||
"prebuild": "rimraf lib", | ||
"build": "cross-env BABEL_ENV=umd webpack", | ||
"build": "npm run build:umd && npm run build:umd:min && npm run build:es", | ||
"build:umd": "cross-env BABEL_ENV=umd webpack", | ||
"build:umd:min": "cross-env BABEL_ENV=umd NODE_ENV=production webpack", | ||
"build:es": "ncp src/responsive-fixed-data-table.js lib/responsive-fixed-data-table.es.js", | ||
"prepublish": "npm run build", | ||
"test": "./node_modules/karma/bin/karma start test/karma.conf.js", | ||
"test:debug": "./node_modules/karma/bin/karma start test/karma.conf.js --no-single-run --auto-watch --log-level debug" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters