-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.77 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
65
66
67
68
69
70
71
72
73
{
"name": "mappet",
"version": "4.3.1",
"description": "Lightweight, composable mappers for object transformations",
"main": "./lib/mappet.js",
"typings": "./lib/mappet.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"doc": "typedoc --out doc src/mappet.ts",
"clean": "rm -rf doc lib test",
"lint": "eslint src --ext ts",
"format": "prettier --write src/*.ts",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichalZalecki/mappet.git"
},
"author": "Michal Zalecki <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MichalZalecki/mappet/issues"
},
"homepage": "https://github.com/MichalZalecki/mappet#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.132",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"moment": "^2.24.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.4.5"
},
"files": [
"lib"
],
"dependencies": {
"lodash": "^4.17.11"
},
"keywords": [
"normalization",
"normalize",
"normalizr",
"transformation",
"object",
"mapper",
"nested"
]
}