-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 926 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 926 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
36
37
38
{
"name": "data-transformer",
"version": "0.0.1",
"description": "Simple data transformer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./.build && tsc",
"prepublish": "npm run build",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:debug": "jest --watchAll"
},
"dependencies": {
"moment": "^2.26.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"tslint": "5.16.0",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/volle241/data-transformer.git"
},
"pre-commit": [
"lint",
"test"
],
"author": "Vladimir Leonovich",
"license": "ISC",
"bugs": {
"url": "https://github.com/volle241/data-transformer/issues"
},
"homepage": "https://github.com/volle241/data-transformer#readme"
}