-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "@wefloc/api-codes",
"version": "1.0.0",
"description": "API codes",
"author": "Dimitri DO BAIRRO <dimitri.dobairro@wefloc.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "16.10.0",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.1",
"prettier": "2.4.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"scripts": {
"prepublishOnly": "yarn clean && yarn build",
"clean": "rm -rf coverage dist tmp",
"build": "yarn clean && tsc",
"build:watch": "tsc -w",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prettier": "prettier --check 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint --fix src/**/*.ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
}
}