Tests rewritten to JavaScript, npm package definition, eslint
Showing
.babelrc
0 → 100644
.eslintrc.js
0 → 100644
.jshintrc
deleted
100644 → 0
Dockerfile.template
deleted
100644 → 0
docker/Dockerfile.template
0 → 100644
docker/start-script.sh
0 → 100755
package.json
0 → 100644
{ | ||
"name": "variety", | ||
"version": "1.5.0", | ||
"description": "A schema analyzer for MongoDB", | ||
"main": "variety.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"lint": "node_modules/.bin/eslint variety.js spec", | ||
"lint:fix": "node_modules/.bin/eslint variety.js spec --fix", | ||
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --recursive --reporter spec --timeout 15000 spec", | ||
"test:docker": "./test.sh", | ||
"travis-ci": "npm run lint && npm run test:docker" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/variety/variety.git" | ||
}, | ||
"author": "James Cropcho (https://twitter.com/Cropcho)", | ||
"contributors": [ | ||
"James Cropcho (https://twitter.com/Cropcho)", | ||
"Eve Freeman (https://twitter.com/wefreema)", | ||
"Tomas Dvorak <todvora@gmail.com> (http://www.tomas-dvorak.cz/)" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/variety/variety/issues" | ||
}, | ||
"homepage": "https://github.com/variety/variety#readme", | ||
"devDependencies": { | ||
"babel-core": "^6.7.2", | ||
"babel-preset-es2015": "^6.6.0", | ||
"child-process-promise": "^1.1.0", | ||
"eslint": "^2.4.0", | ||
"mocha": "^2.4.5", | ||
"mongodb": "^2.1.7", | ||
"q": "^1.4.1" | ||
} | ||
} |
spec/BasicAnalysisTest.js
0 → 100644
spec/DatatypeRecognitionTest.js
0 → 100644
spec/LimitResultsAnalysisTest.js
0 → 100644
spec/LimitedAccessTest.js
0 → 100644
spec/MaxDepthAnalysisTest.js
0 → 100644
spec/ParametersParsingTest.js
0 → 100644
spec/PersistenceTest.js
0 → 100644
spec/PluginTest.js
0 → 100644
spec/QueryLimitedAnalysisTest.js
0 → 100644
spec/SortedAnalysisTest.js
0 → 100644
spec/UnnamedObjectsAnalysisTest.js
0 → 100644
spec/assets/SampleData.js
0 → 100644
spec/utils/JsonValidator.js
0 → 100644
spec/utils/MongoShell.js
0 → 100644
spec/utils/Tester.js
0 → 100644
test/README.markdown
deleted
100644 → 0
test/pom.xml
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment