diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..a57cc9e --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +registry=http://registry.npmjs.org/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..523ec98 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: node_js +node_js: + - "0.12" +sudo: false +branches: + only: + - master + - /^fix-.*$/ + - /^issue-.*$/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..ffe35a2 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# ng-dice + +> AngularJS (NG) unit testing with dependency injection (DI) and code extraction (CE) tricks + +Stay tuned diff --git a/package.json b/package.json new file mode 100644 index 0000000..76bcf7f --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "ng-dice", + "version": "1.0.0", + "description": "AngularJS (NG) unit testing with dependency injection (DI) and code extraction (CE) tricks", + "main": "ng-dice.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/bahmutov/ng-dice.git" + }, + "keywords": [ + "angular", + "angularjs", + "ng", + "dependency", + "injection", + "di", + "code", + "extraction", + "ce", + "unit", + "testing", + "testing", + "bdd" + ], + "author": "Gleb Bahmutov ", + "license": "MIT", + "bugs": { + "url": "https://github.com/bahmutov/ng-dice/issues" + }, + "homepage": "https://github.com/bahmutov/ng-dice#readme" +}