-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 KB
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
{
"name": "@day1co/fastsql",
"version": "0.0.2",
"description": "fast and simple sql builder",
"url": "https://github.com/day1co/fastsql",
"repository": "https://github.com/day1co/fastsql",
"author": "iolo@day1company.co.kr",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc",
"clean": "npm-run-all clean:build clean:module",
"clean:build": "rimraf ./coverage ./lib",
"clean:module": "rimraf ./node_modules",
"lint": "eslint --ext .js --ext .ts ./src",
"prebuild": "npm-run-all clean:build lint",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"serve": "echo no serve",
"start": "npm run serve",
"test": "jest --forceExit --detectOpenHandles --runInBand --coverage --verbose ./src",
"watch": "tsc -w"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.4",
"@types/mysql": "^2.15.21",
"@types/node": "^18.0.3",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}