├── .github └── workflows │ └── push.yml ├── LICENSE ├── README.ja_JP.md ├── README.md ├── index.js ├── main.js ├── package.json ├── questions.json └── test.js /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/README.ja_JP.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/index.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./questions.json'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/package.json -------------------------------------------------------------------------------- /questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/questions.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohikanz/1on1-questions/HEAD/test.js --------------------------------------------------------------------------------