mirror of
https://github.com/postlight/mercury-parser
synced 2024-10-31 03:20:40 +00:00
8f42e119e8
Squashed commit of the following: commit deaf9e60d031d9ee06e74b8c0895495b187032a5 Author: Adam Pash <adam.pash@gmail.com> Date: Tue Sep 20 10:31:09 2016 -0400 chore: README for custom parsers commit a8e8ad633e0d1576a52dbc90ce31b98fb2ec21ee Author: Adam Pash <adam.pash@gmail.com> Date: Mon Sep 19 23:36:09 2016 -0400 draft of readme commit 4f0f463f821465c282ce006378e5d55f8f41df5f Author: Adam Pash <adam.pash@gmail.com> Date: Mon Sep 19 17:56:34 2016 -0400 custom extractor used to build basic parser for theatlantic commit c5562a3cede41f56c4e723dcfa1181b49dcaae4d Author: Adam Pash <adam.pash@gmail.com> Date: Mon Sep 19 17:20:13 2016 -0400 pre-commit to test custom parser generator commit 7d50d5b7ab780b79fae38afcb87a7d1da5d139b2 Author: Adam Pash <adam.pash@gmail.com> Date: Mon Sep 19 17:19:55 2016 -0400 feat: added nytimes parser commit 58b8d83a56927177984ddfdf70830bc4f328f200 Author: Adam Pash <adam.pash@gmail.com> Date: Mon Sep 19 17:17:28 2016 -0400 feat: can do fuzzy search or go straight to file commit c99add753723a8e2ac64d51d7379ac8e23125526 Author: Adam Pash <adam.pash@gmail.com> Date: Mon Sep 19 10:52:26 2016 -0400 refactored export for custom extractors for easier renames commit 22563413669651bb497f1bb2a92085b71f2ae324 Author: Adam Pash <adam.pash@gmail.com> Date: Fri Sep 16 17:36:13 2016 -0400 feat: custom extractor generation in place commit 2285a29908a7f82a5de3c81f6b2b902ddec9bdaa Author: Adam Pash <adam.pash@gmail.com> Date: Fri Sep 16 16:42:20 2016 -0400 good progress
60 lines
1.8 KiB
JSON
60 lines
1.8 KiB
JSON
{
|
|
"name": "mercury-parser",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "./dist/mercury.js",
|
|
"scripts": {
|
|
"start": "node ./build",
|
|
"lint": "eslint src/** --fix",
|
|
"build": "eslint src/** --fix && rollup -c",
|
|
"build-generator": "rollup -c scripts/rollup.config.js",
|
|
"test_build": "rollup -c",
|
|
"test": "./test-runner",
|
|
"generate-custom-parser": "node ./dist/generate-custom-parser.js"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"babel-eslint": "^6.1.2",
|
|
"babel-plugin-external-helpers": "^6.8.0",
|
|
"babel-plugin-module-alias": "^1.6.0",
|
|
"babel-plugin-module-resolver": "^2.2.0",
|
|
"babel-plugin-transform-async-to-generator": "^6.8.0",
|
|
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.8.0",
|
|
"babel-plugin-transform-runtime": "6.12.0",
|
|
"babel-preset-es2015": "^6.13.2",
|
|
"babel-preset-es2015-rollup": "^1.2.0",
|
|
"babel-register": "^6.11.6",
|
|
"babelrc-rollup": "^3.0.0",
|
|
"eslint": "^3.5.0",
|
|
"eslint-config-airbnb": "^11.1.0",
|
|
"eslint-import-resolver-babel-module": "^2.0.1",
|
|
"eslint-plugin-async": "^0.1.1",
|
|
"eslint-plugin-babel": "^3.3.0",
|
|
"eslint-plugin-import": "^1.15.0",
|
|
"eslint-plugin-jsx-a11y": "^2.2.2",
|
|
"eslint-plugin-react": "^6.2.1",
|
|
"inquirer": "^1.1.3",
|
|
"mocha": "^3.0.2",
|
|
"ora": "^0.3.0",
|
|
"rollup": "^0.34.13",
|
|
"rollup-plugin-babel": "^2.6.1",
|
|
"rollup-plugin-commonjs": "^4.1.0",
|
|
"rollup-plugin-multi-entry": "^2.0.1"
|
|
},
|
|
"dependencies": {
|
|
"babel-polyfill": "^6.13.0",
|
|
"babel-runtime": "^6.11.6",
|
|
"cheerio": "^0.20.0",
|
|
"difflib": "^0.2.4",
|
|
"ellipsize": "0.0.2",
|
|
"moment": "^2.14.1",
|
|
"request": "^2.74.0",
|
|
"request-promise": "^4.1.1",
|
|
"string-direction": "^0.1.2",
|
|
"valid-url": "^1.0.9",
|
|
"wuzzy": "^0.1.2"
|
|
}
|
|
}
|