├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── AIML.xsd ├── LICENSE ├── README.md ├── index.js ├── lib ├── engine.coffee └── parser.coffee ├── package.json └── test ├── engine-tests.coffee └── parser-tests.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/.travis.yml -------------------------------------------------------------------------------- /AIML.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/AIML.xsd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/index.js -------------------------------------------------------------------------------- /lib/engine.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/lib/engine.coffee -------------------------------------------------------------------------------- /lib/parser.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/lib/parser.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/package.json -------------------------------------------------------------------------------- /test/engine-tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/test/engine-tests.coffee -------------------------------------------------------------------------------- /test/parser-tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/aiml/HEAD/test/parser-tests.coffee --------------------------------------------------------------------------------