├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── examples └── dice.js ├── package.json ├── stats.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .tern-port 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | test 3 | .npmignore 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebaril/node-stats-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebaril/node-stats-lite/HEAD/README.md -------------------------------------------------------------------------------- /examples/dice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebaril/node-stats-lite/HEAD/examples/dice.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebaril/node-stats-lite/HEAD/package.json -------------------------------------------------------------------------------- /stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebaril/node-stats-lite/HEAD/stats.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebaril/node-stats-lite/HEAD/test/index.js --------------------------------------------------------------------------------