├── .eslintrc ├── .gitignore ├── .jshintrc ├── .npmignore ├── LICENSE ├── README.md ├── html ├── acs-database.html ├── css │ └── acs-database.css └── js │ └── acs-database.js ├── package.json ├── pages-with-ASC.json ├── pages-with-BHL.json └── src ├── findElementByText.js ├── getPages.js ├── jsmerge.js └── scraper.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/README.md -------------------------------------------------------------------------------- /html/acs-database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/html/acs-database.html -------------------------------------------------------------------------------- /html/css/acs-database.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/html/css/acs-database.css -------------------------------------------------------------------------------- /html/js/acs-database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/html/js/acs-database.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/package.json -------------------------------------------------------------------------------- /pages-with-ASC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/pages-with-ASC.json -------------------------------------------------------------------------------- /pages-with-BHL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/pages-with-BHL.json -------------------------------------------------------------------------------- /src/findElementByText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/src/findElementByText.js -------------------------------------------------------------------------------- /src/getPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/src/getPages.js -------------------------------------------------------------------------------- /src/jsmerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/src/jsmerge.js -------------------------------------------------------------------------------- /src/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Woedenaz/acs-database/HEAD/src/scraper.js --------------------------------------------------------------------------------