├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── tasks.json ├── LICENSE ├── README.md ├── package.json ├── src ├── index.ts └── test │ └── test.ts ├── test ├── mocha.js └── mocha.opts ├── tsconfig.json └── typings ├── assertion-error └── assertion-error.d.ts ├── chai └── chai.d.ts ├── mocha └── mocha.d.ts ├── node └── node.d.ts └── sinon └── sinon.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/src/test/test.ts -------------------------------------------------------------------------------- /test/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/test/mocha.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/assertion-error/assertion-error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/typings/assertion-error/assertion-error.d.ts -------------------------------------------------------------------------------- /typings/chai/chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/typings/chai/chai.d.ts -------------------------------------------------------------------------------- /typings/mocha/mocha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/typings/mocha/mocha.d.ts -------------------------------------------------------------------------------- /typings/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/typings/node/node.d.ts -------------------------------------------------------------------------------- /typings/sinon/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vilicvane/deprecated-decorator/HEAD/typings/sinon/sinon.d.ts --------------------------------------------------------------------------------