date-holidays-parser
Advanced tools
Comparing version 1.2.0 to 1.2.1
# CHANGELOG | ||
v1.2.1 | ||
- remove es5 `module`, `jsnext:main` from package.json to ease integration with | ||
tools like `create-react-app` | ||
v1.2.0 | ||
@@ -4,0 +8,0 @@ - parser moved to own repo `date-holidays-parser` |
{ | ||
"name": "date-holidays-parser", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "parser for worldwide holidays", | ||
@@ -14,6 +14,2 @@ "keywords": [ | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/commenthol/date-holidays-parser.git" | ||
}, | ||
"license": "ISC", | ||
@@ -23,25 +19,52 @@ "author": "commenthol <commenthol@gmail.com>", | ||
"main": "lib", | ||
"module": "src", | ||
"jsnext:main": "src", | ||
"directories": { | ||
"lib": "lib", | ||
"doc": "docs", | ||
"lib": "lib", | ||
"test": "test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/commenthol/date-holidays-parser.git" | ||
}, | ||
"scripts": { | ||
"all": "npm run test:ci && npm pack", | ||
"clean": "rimraf .nyc_output coverage lib", | ||
"all": "npm run clean && npm run lint && npm run build && npm test", | ||
"build": "npm run build:cjs", | ||
"build:cjs": "babel -d lib src", | ||
"build:es5": "BABEL_ENV=es5 babel -d es src", | ||
"clean": "rimraf lib es coverage .nyc_output", | ||
"clean:all": "rimraf node_modules && npm run clean", | ||
"coverage": "nyc -r text -r html npm test", | ||
"doc": "jsdox -o docs src/Holidays.js", | ||
"cover": "nyc -r lcov -r text npm test", | ||
"lint": "eslint '**/*.js'", | ||
"prepublishOnly": "npm run all", | ||
"test": "mocha", | ||
"test:ci": "npm run clean && npm run lint && npm run transpile && npm test", | ||
"test:tz": "TZ=UTC-10 npm test && TZ=UTC+10 npm test", | ||
"transpile": "babel -d lib src", | ||
"zuul": "zuul test/Holidays.mocha.js" | ||
"zuul": "zuul test/Holidays.test.js" | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"env" | ||
] | ||
"env": { | ||
"development": { | ||
"presets": [ | ||
"env" | ||
] | ||
}, | ||
"es5": { | ||
"presets": [ | ||
[ | ||
"env", | ||
{ | ||
"targets": { | ||
"node": "current", | ||
"browsers": [ | ||
"last 2 versions", | ||
"ie >= 11" | ||
] | ||
}, | ||
"modules": false, | ||
"loose": true | ||
} | ||
] | ||
] | ||
} | ||
} | ||
}, | ||
@@ -55,11 +78,11 @@ "eslintConfig": { | ||
"dependencies": { | ||
"astronomia": "^1.3.5", | ||
"caldate": "^1.0.0", | ||
"date-chinese": "^1.0.2", | ||
"astronomia": "^2.0.0", | ||
"caldate": "^1.0.1", | ||
"date-chinese": "^1.0.4", | ||
"date-easter": "^0.2.2", | ||
"lodash.get": "^4.4.2", | ||
"lodash.merge": "^4.6.0", | ||
"lodash.merge": "^4.6.1", | ||
"lodash.omit": "^4.5.0", | ||
"lodash.set": "^4.3.2", | ||
"moment-timezone": "^0.5.13" | ||
"moment-timezone": "^0.5.14" | ||
}, | ||
@@ -69,17 +92,17 @@ "devDependencies": { | ||
"babel-core": "^6.26.0", | ||
"babel-preset-env": "^1.6.0", | ||
"babel-preset-env": "^1.6.1", | ||
"babel-register": "^6.26.0", | ||
"babelify": "^8.0.0", | ||
"core-js": "^2.5.1", | ||
"eslint": "^4.6.1", | ||
"eslint-config-standard": "^10.2.1", | ||
"eslint-plugin-import": "^2.7.0", | ||
"eslint-plugin-node": "^5.1.1", | ||
"eslint-plugin-promise": "^3.5.0", | ||
"core-js": "^2.5.5", | ||
"eslint": "^4.19.1", | ||
"eslint-config-standard": "^11.0.0", | ||
"eslint-plugin-import": "^2.11.0", | ||
"eslint-plugin-node": "^6.0.1", | ||
"eslint-plugin-promise": "^3.7.0", | ||
"eslint-plugin-standard": "^3.0.1", | ||
"hashtree": "^0.7.0", | ||
"mocha": "^4.0.1", | ||
"nyc": "^11.2.1", | ||
"rimraf": "^2.6.1", | ||
"serialize-to-js": "^1.1.1", | ||
"mocha": "^5.1.0", | ||
"nyc": "^11.6.0", | ||
"rimraf": "^2.6.2", | ||
"serialize-to-js": "^1.2.0", | ||
"zuul": "^3.11.1" | ||
@@ -90,3 +113,5 @@ }, | ||
}, | ||
"maintainers": "commenthol <commenthol@gmail.com>" | ||
"maintainers": [ | ||
"commenthol <commenthol@gmail.com>" | ||
] | ||
} |
212044
- Removedastronomia@1.4.0(transitive)
Updatedastronomia@^2.0.0
Updatedcaldate@^1.0.1
Updateddate-chinese@^1.0.4
Updatedlodash.merge@^4.6.1
Updatedmoment-timezone@^0.5.14