-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.97 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.97 KB
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
{
"name": "@paulscherrerinstitute/databuffer-query-js",
"description": "JS client API for ch.psi.daq.queryrest",
"version": "0.7.6",
"author": "Paul Scherrer Institute, Switzerland",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/paulscherrerinstitute/databuffer-query-js.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "rm -rf dist/ coverage/ .nyc_output/",
"deps:update-to-latest": "npm-check-updates -u && npm install",
"docs": "typedoc --excludePrivate --out docs/api ./src",
"lint:eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:prettier": "prettier 'src/**/*.ts' 'test/**/*.ts' --list-different || ( echo '↑↑↑ these files are not well formatted ↑↑↑' && exit 1 )",
"format:eslint": "eslint 'src/**/*.ts' 'test/**/*.ts' --fix",
"format:prettier": "prettier 'src/**/*.ts' 'test/**/*.ts' --write",
"mypublish:pre": "npm run clean && npm run build && cp README.md package.json ./dist/",
"mypublish": "npm run mypublish:pre && npm publish ./dist",
"mypack": "npm run mypublish:pre && npm pack ./dist",
"release": "standard-version --dry-run",
"release:prod": "standard-version",
"test": "jest ./src",
"test:coverage": "jest --coverage ./src"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.3.5",
"npm-check-updates": "^12.5.3",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typedoc": "^0.22.13",
"typescript": "^4.4.4"
},
"dependencies": {
"decoders": "^1.25.5"
}
}