This repository has been archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
57
58
59
{
"name": "buoy-js",
"version": "1.2.1",
"description": "Parse data from noaa.gov services. Buoy data and tide data.",
"keywords": "buoy noaa tides currents ndbc",
"license": "MIT",
"author": {
"name": "Gianni Ferullo",
"email": "[email protected]",
"url": "http://gianniferullo.com/"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register test/*.js -b -G",
"coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"coveralls": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint 'test/**/*.js' 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/giannif/buoy-js.git"
},
"main": "dist/bundle.js",
"dependencies": {
"ramda": "^0.18.0"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.3.13",
"babel-core": "~6.3.13",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browser-sync": "^2.9.12",
"browserify": "^12.0.1",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"eslint": "^1.10.3",
"eslint-friendly-formatter": "^1.2.2",
"event-stream": "^3.3.2",
"geolib": "^2.0.18",
"growl": "^1.8.1",
"gulp": "^3.9.0",
"gulp-buffer": "0.0.2",
"gulp-load-plugins": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-replace-task": "^0.11.0",
"gulp-uglify": "^1.4.2",
"gulp-util": "^3.0.7",
"isparta": "^4.0.0",
"mocha": "^2.3.3",
"lodash": "^3.10.1",
"request": "^2.65.0",
"rimraf": "^2.4.3",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.0",
"yargs": "^3.30.0"
}
}