generated from vidavidorra/repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.54 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
{
"name": "rigol-csv-analyser",
"version": "0.1.0",
"description": "Analyse CSV output files of Rigol devices (oscilloscopes).",
"private": true,
"scripts": {
"lint": "concurrently npm:lint-es",
"lint:fix": "concurrently npm:lint-es:fix",
"lint-es": "eslint --ext .ts,.tsx,.js,.jsx,.json .",
"lint-es:file": "eslint --ext .ts,.tsx,.js,.jsx,.json",
"lint-es:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix .",
"lint-es:file:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix",
"format": "prettier --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
"format:file": "prettier --write",
"release:version": "next-standard-version",
"release:changelog": "standard-version --dry-run --skip.commit=true --skip.tag=true",
"release:commit": "git commit --allow-empty -m \"chore(release): trigger release process [ci release]\"",
"release:message": "chalk -t \"Run {green.bold git push} to publish the release or {red.bold git reset HEAD^} to undo the release.\"",
"release": "run-s release:changelog release:commit release:message",
"analyse": "node_modules/.bin/ts-node src/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidavidorra/rigol-csv-analyser.git"
},
"author": "Jeroen de Bruijn",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/vidavidorra/rigol-csv-analyser/issues"
},
"homepage": "https://github.com/vidavidorra/rigol-csv-analyser#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "9.0.1",
"@commitlint/config-conventional": "9.0.1",
"@types/combined-stream": "1.0.2",
"@types/event-stream": "3.3.34",
"@types/express": "4.17.6",
"@types/mustache": "4.0.1",
"@types/node": "12.12.47",
"@types/yargs": "15.0.5",
"@typescript-eslint/eslint-plugin": "3.4.0",
"@typescript-eslint/parser": "3.4.0",
"chalk-cli": "4.1.0",
"combined-stream": "1.0.8",
"concurrently": "5.2.0",
"csv-parse": "4.10.1",
"eslint": "7.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-json": "2.1.1",
"eslint-plugin-prettier": "3.1.4",
"event-stream": "4.0.1",
"express": "4.17.1",
"husky": "4.2.5",
"into-stream": "5.1.1",
"lint-staged": "10.2.11",
"mustache": "4.0.1",
"next-standard-version": "2.1.3",
"npm-run-all": "4.1.5",
"open": "7.0.4",
"prettier": "2.0.5",
"simple-statistics": "7.1.0",
"standard-version": "8.0.0",
"ts-node": "8.10.2",
"typescript": "3.9.5",
"yargs": "15.3.1"
}
}