-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.19 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
{
"name": "@paulscherrerinstitute/databuffer-web-components",
"version": "1.0.4",
"description": "Web components developed for databuffer-ui",
"repository": {
"type": "git",
"url": "https://github.com/paulscherrerinstitute/databuffer-web-components.git"
},
"scripts": {
"clean": "rm -rf dist/ && rm -rf test/visual/current/",
"test": "mocha test/visual --timeout=10000",
"test:regen": "npm run build && node test/visual/regen.js",
"build": "tsc",
"build:watch": "tsc -w",
"deps:update-to-latest": "npm-check-updates -u && npm install",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:prettier": "prettier 'src/**/*.{ts,html,md}' 'test/**/*.{ts,html,md}' --list-different || ( echo '↑↑↑ these files are not well formatted ↑↑↑' && exit 1 )",
"format:eslint": "eslint 'src/**/*.ts' --fix",
"format:prettier": "prettier 'src/**/*.{ts,html,md}' 'test/**/*.{ts,html,md}' --write",
"mypublish:pre": "npm run clean && npm run build && cp LICENSE.md 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"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Paul Scherrer Institute, Switzerland (https://www.psi.ch/)",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/puppeteer": "^5.4.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"browser-sync": "^2.27.9",
"chai": "^4.3.6",
"compression": "^1.7.4",
"eslint": "^8.8.0",
"express": "^4.17.2",
"express-cache-headers": "^0.1.4",
"express-transform-bare-module-specifiers": "^1.0.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"mocha": "^9.2.0",
"npm-check-updates": "^12.2.1",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"prettier": "^2.5.1",
"puppeteer": "^13.1.3",
"serve-static": "^1.14.2",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},
"dependencies": {
"lit": "^2.1.2",
"tslib": "^2.3.1"
}
}