Remove grunt dependency, update docs, add coverage
Showing
- .dockerignore 2 additions, 1 deletion.dockerignore
- .flake8 13 additions, 0 deletions.flake8
- .gitignore 2 additions, 1 deletion.gitignore
- .jshintrc 0 additions, 20 deletions.jshintrc
- .travis.yml 7 additions, 8 deletions.travis.yml
- Gruntfile.js 0 additions, 24 deletionsGruntfile.js
- README.md 0 additions, 1 deletionREADME.md
- docs/develop.md 34 additions, 20 deletionsdocs/develop.md
- docs/install.md 12 additions, 59 deletionsdocs/install.md
- etc/DOIRootCA2.crt 0 additions, 56 deletionsetc/DOIRootCA2.crt
- gruntconfig/clean.js 0 additions, 7 deletionsgruntconfig/clean.js
- gruntconfig/config.js 0 additions, 6 deletionsgruntconfig/config.js
- gruntconfig/flake8.js 0 additions, 22 deletionsgruntconfig/flake8.js
- gruntconfig/index.js 0 additions, 17 deletionsgruntconfig/index.js
- gruntconfig/jshint.js 0 additions, 11 deletionsgruntconfig/jshint.js
- gruntconfig/nose.js 0 additions, 11 deletionsgruntconfig/nose.js
- gruntconfig/watch.js 0 additions, 32 deletionsgruntconfig/watch.js
- package.json 28 additions, 8 deletionspackage.json
.flake8
0 → 100644
.jshintrc
deleted
100644 → 0
Gruntfile.js
deleted
100644 → 0
etc/DOIRootCA2.crt
deleted
100644 → 0
gruntconfig/clean.js
deleted
100644 → 0
gruntconfig/config.js
deleted
100644 → 0
gruntconfig/flake8.js
deleted
100644 → 0
gruntconfig/index.js
deleted
100644 → 0
gruntconfig/jshint.js
deleted
100644 → 0
gruntconfig/nose.js
deleted
100644 → 0
gruntconfig/watch.js
deleted
100644 → 0
... | ... | @@ -19,18 +19,38 @@ |
"geomag", | ||
"hazdev" | ||
], | ||
"scripts": {}, | ||
"scripts": { | ||
"clean": "rimraf '**/*.pyc'", | ||
"coverage": "nosetests --with-coverage --cover-package=geomagio --cover-xml", | ||
"lint": "flake8 && echo \"No linting errors found\"", | ||
"test": "nosetests -q test", | ||
"watch": "npm-watch" | ||
}, | ||
"watch": { | ||
"lint": { | ||
"extensions": "py", | ||
"patterns": [ | ||
"bin", | ||
"geomagio", | ||
"test" | ||
] | ||
}, | ||
"test": { | ||
"extensions": "py", | ||
"patterns": [ | ||
"bin", | ||
"geomagio", | ||
"test" | ||
] | ||
} | ||
}, | ||
"license": "Public Domain", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-clean": "^0.7.0", | ||
"grunt-contrib-jshint": "^0.10.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-flake8": "^0.1.3", | ||
"grunt-nose": "^0.4.0" | ||
"npm-watch": "^0.3.0", | ||
"rimraf": "^2.6.2" | ||
}, | ||
"engines": { | ||
"node": ">=0.1.0" | ||
"node": ">=4" | ||
} | ||
} |
Please register or sign in to comment