-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "@carnesen/run-and-exit",
"description": "Run a function or async function, console.log the result, and exit",
"version": "1.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "rimraf lib/ && tsc",
"example": "node example.js && ts-node src/example.ts",
"lint": "eslint --ext .js,.ts src/ example.js",
"fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run unit-test && npm run example && npm pack",
"unit-test": "jest --coverage src",
"prepublishOnly": "npm test"
},
"dependencies": {},
"devDependencies": {
"@carnesen/tsconfig": "0.4.0",
"@types/jest": "26.0.23",
"@types/node": "15.6.1",
"eslint": "7.27.0",
"eslint-config-carnesen": "5.0.0",
"jest": "27.0.2",
"rimraf": "3.0.2",
"ts-jest": "27.0.1",
"ts-node": "10.0.0",
"typescript": "4.3.2"
},
"files": [
"src/index.ts",
"lib/index.*"
],
"author": {
"name": "Chris Arnesen",
"email": "chris.arnesen@gmail.com"
},
"repository": "git://github.com/carnesen/run-and-exit.git",
"bugs": {
"url": "https://github.com/carnesen/run-and-exit/issues"
},
"homepage": "https://github.com/carnesen/run-and-exit",
"license": "MIT"
}