-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "ebcdic-parser",
"version": "1.0.0",
"description": "basic ebcdic number parser",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "_mocha -b -r ts-node/register -r tsconfig-paths/register -r should -s 0 -t 10000 \"src/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwjft/ebcdic-parser.git"
},
"keywords": [
"ebcdic",
"parser"
],
"author": "Danny Tracey",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwjft/ebcdic-parser/issues"
},
"homepage": "https://github.com/dwjft/ebcdic-parser#readme",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/should": "^13.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"should": "^13.2.3",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.7.0",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^21.0.2"
}
}