-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "@nationalfloodexperts/ncat",
"version": "2.0.0",
"description": "A JavaScript wrapper for NGS’s Coordinate Conversion and Transformation Tool (NCAT) API.",
"main": "lib/ncat.js",
"scripts": {
"build:umd": "cross-env FILE_NAME=ncat webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"build:commonjs": "babel src --out-dir lib",
"clean": "rimraf lib dist",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"test": "jest",
"prepublish": "babel src --out-dir lib"
},
"author": "National Flood Experts",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.2",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"axios": "^0.21.1"
}
}