-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@hyperledgendary/sail-maker",
"version": "0.0.1",
"description": "",
"files": [
"lib/**/*"
],
"bin": {
"sailmaker": "./lib/cli.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "npm run format && npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"release": "standard-version",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ampretia/sail-maker"
},
"keywords": [],
"author": "",
"license": "Apache 2.0",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/gulp": "^4.0.10",
"@types/jest": "^28.1.4",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.2",
"@types/node": "^15.14.0",
"@types/nunjucks": "^3.2.1",
"@types/through2": "^2.0.38",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/pino": "^7.0.5",
"@types/source-map-support": "^0.5.4",
"chalk": "^4.1.2",
"env-var": "^7.1.1",
"gulp": "^4.0.2",
"gulp-nunjucks": "^5.1.0",
"js-yaml": "^4.1.0",
"jsonata": "^1.8.6",
"mkdirp": "^1.0.4",
"nunjucks": "^3.2.3",
"onvif": "^0.6.6",
"pino": "^8.1.0",
"pino-pretty": "^8.1.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"through2": "^4.0.2",
"yargs": "^17.5.1"
},
"engines": {
"node": ">=16.0.0"
}
}