forked from jmfee-usgs/geomag-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "geomag-algorithms",
"version": "0.8.4",
"homepage": "http://geomag.usgs.gov/",
"repository": "https://github.com/usgs/geomag-algorithms.git",
"description": "Geomagnetism algorithms.",
"author": {
"name": "Jeremy Fee",
"email": "[email protected]"
},
"contributors": [
{
"name": "Abram Claycomb",
"email": "[email protected]"
}
],
"keywords": [
"usgs",
"geomag",
"hazdev"
],
"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": {
"npm-watch": "^0.3.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=4"
}
}