-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.83 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.83 KB
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": "type-csv-transformer",
"version": "0.1.1",
"description": "CSV-friendly, declarative and type-safe object to class transformer.",
"sideEffects": false,
"sonpm urce": "src/index.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"postbuild": "tsc --project tsconfig.prod.types.json",
"prettier:fix": "prettier --write \"**/*.ts\"",
"prettier:check": "prettier --check \"**/*.ts\"",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts src/",
"lint:check": "eslint --max-warnings 0 --ext .ts src/",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --no-cache --coverage --verbose"
},
"license": "MIT",
"author": "Seokho Jeong",
"repository": "https://github.com/seocochan/type-csv-transformer.git",
"homepage": "https://github.com/seocochan/type-csv-transformer",
"bugs": "https://github.com/seocochan/type-csv-transformer/issues",
"keywords": ["csv", "typescript", "decorator"],
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rollup": "^2.46.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}