-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 992 Bytes
/
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
{
"name": "@starlight-ts/pg-ts",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src --ext .ts --fix",
"test": "ava"
},
"engines": {
"node": ">=10.1.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"ava": "^2.3.0",
"eslint": "^6.7.2",
"eslint-config-bamboo": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"files": [
"test/**/*.ts",
"!test/lib"
],
"require": [
"ts-node/register",
"source-map-support/register"
]
}
}