├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json └── test ├── containerpilot.json5 └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log* 2 | node_modules 3 | .DS_Store 4 | .eslintcache 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/package.json -------------------------------------------------------------------------------- /test/containerpilot.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/test/containerpilot.json5 -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TritonDataCenter/node-piloted/HEAD/test/index.js --------------------------------------------------------------------------------