-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@gynzy/mapper",
"version": "0.1.8",
"description": "Convention based object mapper inspired by AutoMapper",
"main": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/gynzy/mapper.git"
},
"author": "Joël Luijmes",
"license": "MIT",
"typings": "dist/index",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json -d true",
"lint": "tsc --noEmit && eslint 'src/*.ts'",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --forceExit"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.5.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/gynzy/mapper/issues"
},
"homepage": "https://github.com/gynzy/mapper#readme",
"keywords": [
"mapper",
"typescript",
"object-mapping"
]
}