Initial commit.
parents
.editorconfig
0 → 100644
.gitignore
0 → 100644
.npmignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
TODO.markdown
0 → 100644
package.json
0 → 100644
{ | ||
"name": "mfgames-culture-js", | ||
"version": "0.2.0", | ||
"description": "A library for handling arbitrary cultures and calendars for fantasy and sci-fi.", | ||
"license": "MIT", | ||
"author": { | ||
"name": "Dylan R. E. Moonfire", | ||
"email": "d.moonfire@mfgames.com", | ||
"url": "https://d.moonfire.us" | ||
}, | ||
"keywords": [ | ||
"fantasy", | ||
"sci-fi", | ||
"calendar" | ||
], | ||
"scripts": { | ||
"test": "mocha lib/tests", | ||
"lint": "tslint src/*.ts", | ||
"build": "tsc -p src/tsconfig.json", | ||
"prebuild": "npm run lint" | ||
}, | ||
"homepage": "https://mfgames.com/mfgames-culture", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dmoonfire/mfgames-culture-js" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/dmoonfire/mfgames-culture-js/issues" | ||
}, | ||
"devDependencies": { | ||
"@types/mocha": "^2.2.41", | ||
"@types/node": "^7.0.18", | ||
"expect": "^1.20.2", | ||
"jasmine-node": "^1.14.5", | ||
"mfgames-culture-data": "^1.0.2", | ||
"mocha": "^3.3.0", | ||
"tslint": "^5.2.0", | ||
"typescript": "^1.6.2" | ||
}, | ||
"dependencies": { | ||
"@types/big.js": "0.0.31", | ||
"@types/bluebird": "^3.5.3", | ||
"big.js": "^3.1.3", | ||
"bluebird": "^3.5.0" | ||
}, | ||
"main": "lib/index.js" | ||
} |
src/index.ts
0 → 100644
src/interfaces.ts
0 → 100644
src/process.ts
0 → 100644
This diff is collapsed.
src/providers.ts
0 → 100644
src/tests/gregorian-tests.ts
0 → 100644