-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "task-piper",
"version": "0.1.5",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "node dist/examples/server",
"start:dev": "nodemon",
"lint": "eslint lib/ --ext .jsx,.js,.ts",
"lint:fix": "eslint lib/ --ext .jsx,.js,.ts --fix",
"lint:cached": "eslint --ext .jsx,.js,.ts lib/ --cache",
"linter": "node node_modules/watch/cli.js \"npm run lint:cached\" --wait=10",
"test": "jest --watchAll",
"build": "rm -rf dist/ ; npx tsc --rootDir lib --outDir dist"
},
"author": "Michael O Toole",
"license": "ISC",
"nodemon": {
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "ts-node ./dist/examples/server.js"
},
"dependencies": {
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ndjson": "^1.5.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"watch": "^1.0.2"
}
}