-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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": "@turist/ship-board",
"version": "0.1.0",
"description": "Board a project to Ship.",
"repository": "turist-cloud/ship",
"author": "Olli Vanhoja <[email protected]>",
"license": "MIT",
"bin": {
"ship-board": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "ncc build src/index.ts -s -o dist",
"lint": "eslint --ext .ts ./src",
"prepublish": "npm run build",
"prettier": "prettier --write './{src,__test__}/**/*.ts'",
"test": "NODE_ENV=test jest"
},
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@turist/fetch": "7.1.7",
"adal-node": "0.2.2",
"ajv": "6.12.4",
"async-sema": "3.1.0",
"glob": "7.1.7",
"ignore": "5.1.8",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@types/glob": "7.1.3",
"@types/jest": "26.0.23",
"@types/node": "13.13.4",
"@types/node-fetch": "2",
"@vercel/ncc": "0.28.6",
"eslint": "7.18.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"ts-jest": "27.0.3",
"typescript": "4.3.3"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.ts"
],
"verbose": true
}
}