-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@metrichor/cronkite",
"version": "1.6.0",
"repository": "https://github.com/nanoporetech/cronkite",
"description": "Cronkite - Build dashboards and reports from datastreams",
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/cronkite/cronkite.esm.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"build:docs": "npm run build --docs",
"build:app": "npm run build --serve",
"clean": "rm -rf dist www .stencil",
"eslint:app": "npm run eslint 'src/**/*.{ts,tsx,js}'",
"eslint": "eslint --format stylish",
"lint-ts": "npm run eslint:app",
"lint-css": "stylelint \"src/**/*.{css,less,styl,scss,sass,sss}\"",
"lint": "npm run lint-ts && npm run lint-css",
"fix-ts": "npm run eslint:app -- --fix",
"fix-css": "npm run lint-css -- --fix",
"fix": "npm run fix-ts && npm run fix-css",
"package:version": "for file in $(find . -type f -name package.json -not -path \"./node_modules/*\" -not -path \"./dist/*\" -not -path \"./loader/*\"); do jq \".version=(.version | split(\\\"-\\\") | .[0] | split(\\\".\\\") | [.[0], .[1], .[2]+\\\"-${PATCH:-`date +\"%-H%M\"`}\\\"] | join(\\\".\\\"))\" < $file > $file.tmp && mv $file.tmp $file; done",
"start": "stencil build --dev --watch --serve",
"start:data:server": "node scripts/serveDemoData.js &",
"test:watch": "stencil test --spec --e2e --watchAll",
"test": "stencil test --spec --e2e",
"test.e2e": "stencil test --e2e",
"test.spec": "stencil test --spec"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run fix-ts --fix",
"git add --force"
],
"*.{json,md,graphql}": [
"prettier --write",
"git add --force"
],
"*.{css,less,styl,scss,sass,sss}": [
"stylelint --fix",
"git add --force"
]
},
"license": "MPL-2.0",
"dependencies": {
"@metrichor/ui-components": "1.1.1-3890145",
"ajv": "8.6.3",
"jmespath-edit": "0.3.2",
"rxjs": "^7.4.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@ionic/core": "5.8.5",
"@stencil/core": "2.10.0",
"@stencil/eslint-plugin": "0.4.0",
"@stencil/sass": "1.5.2",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"husky": "7.0.4",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lint-staged": "11.2.6",
"live-server": "1.2.1",
"prettier": "2.4.1",
"puppeteer": "^10.4.0",
"stylelint": "14.0.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard-scss": "2.0.1",
"stylelint-no-indistinguishable-colors": "^1.3.0",
"stylelint-order": "5.0.0",
"stylelint-prettier": "1.2.0",
"ts-runtime-typecheck": "2.4.2",
"typescript": "^4.4.4"
}
}