This repository has been archived by the owner on Nov 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
98 lines (98 loc) · 2.59 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
90
91
92
93
94
95
96
97
98
{
"name": "@cortezaproject/corteza-js",
"description": "Corteza JavaScript/TypeScript libs",
"version": "2022.3.6",
"license": "Apache-2.0",
"author": "Denis Arh <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build:dev": "rollup -c",
"lint": "eslint src/** --ext .js,.ts",
"test:unit": "mocha",
"test:unit:cc": "nyc mocha",
"codegen:corteza-api-client": "node -r esm tools/codegen/corteza-api-client.js"
},
"dependencies": {
"axios": "^0.21.1",
"chart.js": "2.9.3",
"hex-rgb": "^4.1.0",
"lodash": "^4.17.15",
"minimalist": "^1.0.0",
"minimatch": "^3.0.4",
"moment": "2.29.2",
"numeral": "^2.0.6",
"pino": "^5.16.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/chai": "^4.2.6",
"@types/chai-as-promised": "^7.1.2",
"@types/js-yaml": "^3.12.2",
"@types/lodash": "^4.14.149",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.7",
"@types/numeral": "^0.0.26",
"@types/pino": "^5.15.3",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"esformatter": "^0.11.2",
"esformatter-add-trailing-commas": "^1.1.0",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"handlebars": "^4.7.6",
"js-yaml": "^3.14.0",
"mocha": "^7.2.0",
"node-watch": "^0.6.3",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"rollup": "^1.29.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-typescript2": "^0.25.3",
"source-map-support": "^0.5.16",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.1.0",
"ts-sinon": "^1.0.25",
"typescript": "^3.7.2"
},
"resolutions": {
"**/**/moment": "2.29.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"require": [
"ts-node/register"
],
"all": true,
"check-coverage": true,
"per-file": true,
"lines": 90,
"functions": 90,
"statements": 90,
"reporter": [
"text",
"lcov"
],
"include": [
"src/**/*.ts"
]
},
"engines": {
"node": ">=12.14.0"
}
}