UNPKG

dataframe-js

Version:

Immutable and functional data structure for datascientists and developpers

86 lines (85 loc) 3.17 kB
{ "name": "dataframe-js", "version": "1.3.0", "description": "Immutable and functional data structure for datascientists and developpers", "keywords": [ "DataFrame", "data", "immutable", "sql", "structured", "wrangling", "datascience", "browser" ], "homepage": "https://gmousse.gitbooks.io/dataframe-js/", "bugs": "https://github.com/Gmousse/dataframe-js/issues", "repository": { "type": "git", "url": "https://github.com/Gmousse/dataframe-js.git" }, "main": "./lib/index.js", "scripts": { "lint": "check-node-version --node '>= 4' && eslint -c .eslintrc ./src || check-node-version --node '< 4'", "prettier": "prettier --write 'src/**/*'", "test": "NODE_ENV=production nyc babel-tape-runner 'tests/*-test.js' | tap-diff", "posttest": "npm run lint", "coverage": "nyc report --reporter=text-lcov | coveralls", "doc": "babel-node doc/doc.js", "checkes3": "check-es3-syntax lib/ --kill --print", "predts": "mkdir -p ../tmp-dfjs && cd ../tmp-dfjs && npm i ../dataframe-js", "dts": "cd ../tmp-dfjs && dts-gen -m dataframe-js --overwrite -f ../dataframe-js/dataframe-js.d.ts", "postdts": "rm -rf ../tmp-dfjs", "build:commonjs": "NODE_ENV=production babel src/ -d lib/ --no-comments", "build:umd": "webpack", "build:umd:min": "NODE_ENV=production webpack", "prebuild": "npm run test && rm -rf lib dist", "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min", "postbuild": "npm run checkes3 && npm run doc && npm run dts" }, "author": { "name": "Guillaume Mousnier", "email": "mousnier.guillaume@gmail.com", "url": "https://twitter.com/DatMousse" }, "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.2", "babel-eslint": "^8.2.3", "babel-loader": "^6.2.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", "babel-plugin-transform-es3-member-expression-literals": "^6.22.0", "babel-plugin-transform-es3-modules-literals": "^0.0.3", "babel-plugin-transform-es3-property-literals": "^6.22.0", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-es2015": "^6.24.1", "babel-preset-minify": "^0.4.0", "babel-preset-stage-0": "^6.24.1", "babel-runtime": "^6.26.0", "babel-tape-runner": "^2.0.1", "check-es3-syntax-cli": "^0.2.1", "check-node-version": "^3.2.0", "coveralls": "^3.0.0", "documentation": "^6.3.2", "dts-gen": "^0.5.7", "eslint": "^4.19.1", "nyc": "^11.7.1", "simple-benchmark": "gist:131f8013582c6254c5c38e5d0a4156b4", "tap-diff": "^0.1.1", "tape": "^4.9.0", "webpack": "^1.13.1" }, "dependencies": { "babel-polyfill": "^6.26.0", "d3-dsv": "^1.0.3", "d3-request": "1.0.2" } }