-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "geoglows",
"version": "2.0.8",
"description": "This is an npm package that helps to use the Geoglows API",
"main": "dist/geoglows.js",
"dependencies": {
"jquery": "^3.5.1",
"mathjs": "^6.6.5",
"plotly.js-dist": "^1.54.1",
"randomcolor": "^0.5.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"canvas": "^2.6.1",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"mocha": "^6.2.3",
"rimraf": "^3.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"build": "webpack --progress --mode=production",
"watch": "webpack --progress --watch",
"build:commonjs": "babel scripts --out-dir lib",
"build:umd": "cross-env FILE_NAME=geoglows webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"clean": "rimraf lib dist",
"build:f": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/romer8/GEOgloWS-JavaScript-Package.git"
},
"keywords": [
"BYU"
],
"author": "Hydroinformatics Lab BYU",
"license": "MIT",
"bugs": {
"url": "https://github.com/romer8/GEOgloWS-JavaScript-Package/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/romer8/GEOgloWS-JavaScript-Package#readme"
}