-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "@dilanluna/csv-parser",
"version": "1.0.1",
"description": "Parse csv files into javascript objects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"transpile": "babel src --out-dir lib --extensions .ts --source-maps",
"typing": "tsc --emitDeclarationOnly",
"build": "npm run clean && npm run transpile && npm run typing"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/dilanluna/csv-parser.git"
},
"keywords": [
"parser",
"csv",
"csv-files",
"csv-parser"
],
"author": "Dylan Luna <me@dilanluna.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dilanluna/csv-parser/issues"
},
"homepage": "https://github.com/dilanluna/csv-parser#readme",
"devDependencies": {
"@babel/cli": "7.18.6",
"@babel/core": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/node": "18.0.3",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"typescript": "4.7.4"
},
"engines": {
"node": ">=10"
}
}