-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.16 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": "@tictactrip/ground-place-sdk",
"version": "1.0.0",
"description": "Ground place SDK",
"author": "Tictactrip <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@tictactrip/gp-uid": "2.1.1",
"lodash.clonedeep": "4.5.0"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.4.4",
"typescript": "4.1.3"
},
"scripts": {
"clean": "rm -rf dist coverage",
"build:clean": "yarn clean && yarn build",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"prettier": "prettier --check '{src,__tests__}/**/*.ts'",
"prettier:fix": "prettier --write '{src,__tests__}/**/*.ts'",
"eslint": "eslint {src,__tests__}/**/*.ts",
"eslint:fix": "eslint --fix {src,__tests__}/**/*.ts",
"test": "jest",
"test:watch": "jest --watch"
}
}