-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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": "pipeline-test",
"version": "1.0.0",
"description": "Pipeline",
"main": "index.js",
"repository": "git@github.com:ranskills/pipeline-test.git",
"author": "Ransford Okpoti <ranskills@yahoo.co.uk>",
"license": "MIT",
"bin": "src/index.js",
"pkg": {
"assets": [
"public/**/*"
]
},
"scripts": {
"compile": "tsc --project .",
"build": "yarn compile && npx pkg --targets node16 .",
"start": "nodemon src/index.ts",
"start:dev": "nodemon dist/src/index.js",
"test": "echo \"Error: no test specified.\" && exit 1",
"test:unit": "ts-node node_modules/.bin/tape 'test/unit/**/*.ts' | faucet",
"test:coverage": "nyc ts-node node_modules/.bin/tape 'test/unit/**/*.ts' --reporter=lcov --reporter=text",
"test:e2e": "cucumber-js --no-strict -p default"
},
"devDependencies": {
"@cucumber/cucumber": "^8.8.0",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/puppeteer": "^7.0.4",
"@types/tape": "^4.13.2",
"faucet": "^0.0.3",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"pkg": "^5.8.0",
"puppeteer": "^19.2.2",
"tape": "^5.6.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"express": "^4.18.2",
"prom-client": "^14.1.0"
}
}