-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "typedsv",
"version": "0.1.0",
"license": "MIT",
"description": "Parse and map delimiter-separated values (csv, tsv, etc.) to TypeScript/ES6+ classes.",
"author": {
"name": "Derek McNeil",
"email": "derekmcneil90@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dmcneil/typedsv"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"clean": "rm -rf ./build/",
"build": "npm run clean && tsc",
"test": "jest --config jestconfig.json",
"coverage": "jest --coverage=true --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint --fix -p tsconfig.json"
},
"keywords": [
"dsv",
"dsv-parser",
"csv",
"csv-parser",
"tsv",
"tsv-parser",
"delimiter",
"parser",
"mapper",
"typescript"
],
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.2.1"
},
"files": ["build/**/*"]
}