├── .babelrc ├── .eslintrc ├── .github ├── issue_template.md ├── pull_request_template.md ├── stale.yml └── workflows │ └── general.yml ├── .gitignore ├── .npmignore ├── .nycrc ├── .prettierrc ├── LEAD.md ├── LICENSE.md ├── Makefile ├── README.md ├── data ├── csv-dialect.json ├── data-package-dereference.json ├── data-package-multiple-resources.json ├── data-package.json ├── data-resource-dereference.json ├── data-resource.json ├── data.csv ├── data.csvformat ├── data.dialect.csv ├── dp1 │ ├── data.csv │ └── datapackage.json ├── dp2-tabular │ ├── data.csv │ ├── data2.csv │ └── datapackage.json ├── dp3-zip.zip ├── dp3-zip │ ├── data │ │ └── countries.csv │ └── datapackage.json ├── latin1.csv └── table-schema.json ├── examples ├── .keep ├── datapackage.js ├── resource.js └── validate.js ├── karma.conf.js ├── package.json ├── src ├── config.js ├── errors.js ├── helpers.js ├── index.js ├── infer.js ├── package.js ├── profile.js ├── profiles │ ├── data-package.json │ ├── data-resource.json │ ├── fiscal-data-package.json │ ├── registry.json │ ├── tabular-data-package.json │ └── tabular-data-resource.json ├── resource.js └── validate.js ├── test ├── errors.js ├── helpers.js ├── infer.js ├── karma.opts ├── mocha.opts ├── package.js ├── profile.js ├── resource.js └── validate.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/general.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.github/workflows/general.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /LEAD.md: -------------------------------------------------------------------------------- 1 | aivuk 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/README.md -------------------------------------------------------------------------------- /data/csv-dialect.json: -------------------------------------------------------------------------------- 1 | {"delimiter": ","} 2 | -------------------------------------------------------------------------------- /data/data-package-dereference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data-package-dereference.json -------------------------------------------------------------------------------- /data/data-package-multiple-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data-package-multiple-resources.json -------------------------------------------------------------------------------- /data/data-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data-package.json -------------------------------------------------------------------------------- /data/data-resource-dereference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data-resource-dereference.json -------------------------------------------------------------------------------- /data/data-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data-resource.json -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data.csv -------------------------------------------------------------------------------- /data/data.csvformat: -------------------------------------------------------------------------------- 1 | city,population 2 | london,8787892 3 | paris,2244000 4 | rome,2877215 5 | -------------------------------------------------------------------------------- /data/data.dialect.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/data.dialect.csv -------------------------------------------------------------------------------- /data/dp1/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp1/data.csv -------------------------------------------------------------------------------- /data/dp1/datapackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp1/datapackage.json -------------------------------------------------------------------------------- /data/dp2-tabular/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp2-tabular/data.csv -------------------------------------------------------------------------------- /data/dp2-tabular/data2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp2-tabular/data2.csv -------------------------------------------------------------------------------- /data/dp2-tabular/datapackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp2-tabular/datapackage.json -------------------------------------------------------------------------------- /data/dp3-zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp3-zip.zip -------------------------------------------------------------------------------- /data/dp3-zip/data/countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp3-zip/data/countries.csv -------------------------------------------------------------------------------- /data/dp3-zip/datapackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/dp3-zip/datapackage.json -------------------------------------------------------------------------------- /data/latin1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/latin1.csv -------------------------------------------------------------------------------- /data/table-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/data/table-schema.json -------------------------------------------------------------------------------- /examples/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/datapackage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/examples/datapackage.js -------------------------------------------------------------------------------- /examples/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/examples/resource.js -------------------------------------------------------------------------------- /examples/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/examples/validate.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/package.json -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/config.js -------------------------------------------------------------------------------- /src/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/errors.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/index.js -------------------------------------------------------------------------------- /src/infer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/infer.js -------------------------------------------------------------------------------- /src/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/package.js -------------------------------------------------------------------------------- /src/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profile.js -------------------------------------------------------------------------------- /src/profiles/data-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profiles/data-package.json -------------------------------------------------------------------------------- /src/profiles/data-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profiles/data-resource.json -------------------------------------------------------------------------------- /src/profiles/fiscal-data-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profiles/fiscal-data-package.json -------------------------------------------------------------------------------- /src/profiles/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profiles/registry.json -------------------------------------------------------------------------------- /src/profiles/tabular-data-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profiles/tabular-data-package.json -------------------------------------------------------------------------------- /src/profiles/tabular-data-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/profiles/tabular-data-resource.json -------------------------------------------------------------------------------- /src/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/resource.js -------------------------------------------------------------------------------- /src/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/src/validate.js -------------------------------------------------------------------------------- /test/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/errors.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/infer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/infer.js -------------------------------------------------------------------------------- /test/karma.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/karma.opts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive 2 | --timeout 10000 3 | -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/package.js -------------------------------------------------------------------------------- /test/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/profile.js -------------------------------------------------------------------------------- /test/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/resource.js -------------------------------------------------------------------------------- /test/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/test/validate.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/datapackage-js/HEAD/webpack.config.js --------------------------------------------------------------------------------