-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 931 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 931 Bytes
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
{
"name": "node-itglue",
"version": "1.0.2",
"description": "Node.js wrapper for the ITGlue API",
"main": "lib/index.js",
"esnext": "index.js",
"scripts": {
"build-webpack": "webpack --config webpack.config.js",
"build-webpack-min": "webpack --config webpack.min.config.js",
"build-babel": "npx babel src --out-dir lib",
"prepare": "npx babel src --out-dir lib & webpack --config webpack.config.js & webpack --config webpack.min.config.js"
},
"author": "Kevin Grube",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/covenanttechnologysolutions/node-itglue.git"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.2.2",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2"
}
}