-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 963 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 963 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
32
33
34
35
{
"name": "nm-ebcdic-converter",
"version": "1.0.1",
"description": "A simple Node module for converting EBCDIC char to ASCII char and vice-versa",
"main": "dist/main.js",
"module": "src/ebcdic.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "mocha --require babel-register",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/joabetc/nm-ebcdic-converter.git"
},
"keywords": [
"Node",
"EBCDIC",
"ASCII"
],
"author": "Joabe Costa <joabetc@hotmail.com> (http://www.linkedin.com/in/joabecosta)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joabetc/nm-ebcdic-converter/issues"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"mocha": "^5.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}