-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.56 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
{
"name": "@lcdev/api-fields",
"version": "0.1.5",
"description": "Trim fields from your models before returning in API",
"license": "MPL-2.0",
"sideEffects": false,
"author": {
"name": "Launchcode",
"email": "[email protected]",
"url": "https://lc.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/launchcodedev/api-fields.git"
},
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!*.tsbuildinfo",
"!*.test.*"
],
"scripts": {
"build": "tsc -b",
"build:es": "tsc -b tsconfig.es.json",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint --ext .ts,.tsx src",
"fix": "eslint --ext .ts,.tsx src --fix",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
},
"devDependencies": {
"@commitlint/cli": "8",
"@lcdev/commitlint": "1",
"@lcdev/eslint-config": "0.2",
"@lcdev/jest": "0.1",
"@lcdev/prettier": "0.1",
"@lcdev/tsconfig": "0.1",
"@types/jest": "24",
"@types/lodash.merge": "4",
"eslint": "6",
"husky": "3",
"jest": "24",
"prettier": "1",
"typescript": "3"
},
"dependencies": {
"@lcdev/mapper": "0.1",
"lodash.merge": "4",
"reflect-metadata": "0.1"
},
"prettier": "@lcdev/prettier",
"eslintConfig": {
"extends": "@lcdev"
},
"jest": {
"preset": "@lcdev/jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@lcdev/commitlint"
]
}
}