-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·124 lines (124 loc) · 4.25 KB
/
package.json
File metadata and controls
executable file
·124 lines (124 loc) · 4.25 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@senx/warpview-editor",
"version": "2.3.46",
"description": "WarpScript editor",
"repository": {
"type": "git",
"url": "https://github.com/senx/warpview-editor.git"
},
"author": "SenX <contact@senx.io>",
"license": "Apache-2.0",
"keywords": [
"web",
"editor",
"code",
"web components",
"time series",
"warp10",
"Warp 10",
"WarpScript",
"Geo Times Series",
"Times Series"
],
"module": "dist/esm/index.js",
"main": "dist/warpview-editor.js",
"typings": "./index.ts",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/warpview-editor-ng",
"elements/"
],
"browserslist": [
"defaults"
],
"scripts": {
"ng": "ng",
"sass": "./node_modules/node-sass/bin/node-sass",
"dev": "ng serve",
"build": "yarn clean && yarn build:lib && yarn build:elements",
"build:demo": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"gen": "cd projects/warpview-editor-ng/src/lib/elements && ng g component --module=warp-view-editor-angular.module --entryComponent=true --skipTests=true --style=scss --viewEncapsulation=ShadowDom --export=true",
"gh": "yarn copy && ng build --configuration production --base-href /warpview-editor/ && npx ngh --dir=dist/warpview-editor-elements --repo=git@github.com:senx/warpview.git",
"build:elements": "ng build --configuration production --single-bundle=true --output-hashing=none --project elements && node scripts/build.js",
"build:lib2": "ngc -p src/tsconfig.elements-ng.json && ./node_modules/node-sass/bin/node-sass projects/warpview-editor-ng/src/styles.scss ./dist/warpview-editor-ng/style.css",
"clean": "rm -fr ./elements && rm -fr ./dist",
"prepublishOnly": "yarn clean && yarn build",
"build:lib": "ng build --project=warpview-editor-ng --configuration production",
"copy": "cp -r node_modules/monaco-editor/dev/vs src/assets/.",
"nvm": "nvm install 10.18.0",
"build:pack": "(cd dist/warpview-editor && yarn pack)",
"build:publish": "yarn version $1 && (cd project/warpview-editor-ng && yarn version $1 ) && yarn clean && yarn build && (cd dist/warpview-editor && yarn publish)"
},
"dependencies": {
"@angular/animations": "~13.3.11",
"@angular/common": "~13.3.11",
"@angular/compiler": "~13.3.11",
"@angular/core": "~13.3.11",
"@angular/elements": "^13.3.11",
"@angular/forms": "~13.3.11",
"@angular/platform-browser": "~13.3.11",
"@angular/platform-browser-dynamic": "~13.3.11",
"@angular/router": "~13.3.11",
"@giwisoft/wc-split": "1.0.9",
"@giwisoft/wc-tabs": "1.0.10",
"@ungap/custom-elements": "^1.1.1",
"@webcomponents/custom-elements": "^1.5.1",
"@webcomponents/webcomponentsjs": "^2.7.0",
"bignumber.js": "^9.1.1",
"core-js": "^3.30.2",
"dayjs": "^1.11.7",
"dompurify": "^3.0.3",
"elements-zone-strategy": "^10.0.1",
"highlight.js": "^11.8.0",
"marked": "^4.2.4",
"monaco-editor": "^0.38.0",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"uuid": "^9.0.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.7",
"@angular/cli": "~13.3.7",
"@angular/compiler-cli": "~13.3.11",
"@angular/language-service": "~13.3.11",
"@types/marked": "^4.0.7",
"@types/node": "^20.1.2",
"@types/uuid": "^9.0.1",
"@webcomponents/custom-elements": "^1.5.1",
"@webcomponents/webcomponentsjs": "^2.7.0",
"angular-cli-ghpages": "^1.0.6",
"caniuse-lite": "^1.0.30001486",
"codelyzer": "^6.0.2",
"concat": "^1.0.3",
"copy-webpack-plugin": "^8.1.1",
"fs-extra": "^11.1.1",
"ng-packagr": "^13.3.1",
"ngx-build-plus": "13.0.1",
"sass": "^1.62.1",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"typescript": "~4.4.2"
},
"bugs": {
"url": "https://github.com/senx/warpview-editor/issues"
},
"homepage": "https://www.warp10.io",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}