├── .eslintrc.yml ├── .gitignore ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── README.md ├── appveyor.yml ├── index.js ├── package.json └── test ├── cpu.js └── mocha.opts /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/appveyor.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/package.json -------------------------------------------------------------------------------- /test/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleRoss/windows-cpu/HEAD/test/cpu.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 10s --------------------------------------------------------------------------------