-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "larvitorder-pg",
"version": "0.1.3",
"description": "Order library running on PostgreSQL",
"main": "build/index.js",
"scripts": {
"build": "npm run lint && tsc -p ./tsconfig.json",
"lint": "tslint ./src/* ./test/*",
"test": "npm run build && nyc --reporter=lcov --require ts-node/register tape test/**/*.{ts,js} | tap-spec; nyc report ---reporter=text"
},
"repository": {
"type": "git",
"url": "git+https://github.com/larvit/larvitorder-pg.git"
},
"keywords": [
"order",
"orders"
],
"author": "Lilleman <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/larvit/larvitorder-pg/issues"
},
"homepage": "https://github.com/larvit/larvitorder-pg#readme",
"dependencies": {
"larvitdb-pg": "1.0.4",
"larvitdbmigration-pg": "0.2.1",
"uuid": "3.4.0"
},
"devDependencies": {
"@types/dotenv": "6.1.1",
"@types/node": "12.12.30",
"@types/pg": "7.14.3",
"@types/tape": "4.2.34",
"@types/uuid": "3.4.8",
"dotenv": "8.2.0",
"larvitutils": "3.2.1",
"nyc": "14.1.1",
"tap-spec": "5.0.0",
"tape": "4.13.2",
"ts-node": "8.8.1",
"tslint": "5.20.1",
"typescript": "3.8.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
]
}
}