generated from jmendiara/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·48 lines (48 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
{
"name": "coiot-coap",
"version": "1.0.0",
"description": "Minimalistic client and server for CoIoT protocol",
"author": "Javier Mendiara Cañardo <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "node dist/index.js",
"clean": "rm -fR lib && rm -fR *.tsbuildinfo",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.json",
"prewatch": "npm run clean",
"watch": "tsc -w -p tsconfig.json",
"lint": "eslint .",
"test": "jest --coverage",
"test:watch": "jest --watch",
"format": "prettier --write '{src,__tests__}/**/*.{js,ts,md}'",
"prepublishOnly": "npm run test && npm run build"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"bin": {
"coiot": "./bin/coiot"
},
"dependencies": {
"coap": "^0.24.0",
"commander": "^6.2.0"
},
"devDependencies": {
"@types/bl": "^2.1.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"tsutils": "^3.17.0",
"typescript": "^4.1.2"
}
}