-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 5.29 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 5.29 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
125
126
127
128
129
130
131
132
{
"name": "ngx-vis",
"version": "6.0.0",
"main": "ngx-vis",
"types": "ngx-vis.d.ts",
"description": "Angular x components for using vis.js",
"scripts": {
"flow.compile": "npm run flow.compile:common && npm run flow.extract-metadata",
"flow.compile:tsc": "tsc -p tsconfig.publish.json",
"flow.compile:common": "npm run flow.compile:tsc",
"flow.clean": "rimraf bundles coverage dist demo-build \"components/**/*.+(metadata.json|js|d.ts|js.map)\" dist \"ngx-vis.+(js|d.ts|js.map)\"",
"flow.eslint": "eslint --ignore-path .gitignore --ext js --fix . .config",
"flow.extract-metadata": "ng-packagr -p ng-package.json -c tsconfig.publish.json",
"flow.lint": "npm run flow.eslint",
"flow.build:demo": "(cd dist && npm pack) && (cd demo && npm i ../dist/ngx-vis-*.tgz && npm run build)",
"flow.build:github-pages": "(cd dist && npm pack) && (cd demo && npm i ../dist/ngx-vis-*.tgz && ng build --base-href=/ngx-vis/ --output-path=../docs)",
"clean": "npm run flow.clean",
"build": "npm run build:lib",
"build:all": "npm run build:lib && npm run build:demo && npm run build:docs",
"build:lib": "npm run flow.compile",
"build:demo": "rm -rf docs/* && npm run flow.build:demo",
"build:docs": "rm -rf docs/* && npm run flow.build:github-pages",
"pretest": "npm run flow.lint",
"test": "CHROME_BIN=$(node -e \"process.stdout.write(require('puppeteer').executablePath())\") ng test --browsers=$(node -e \"process.stdout.write(process.env.CI==='true'?'ChromeHeadlessNoSandbox':'ChromeHeadless')\") --no-watch",
"test:watch": "CHROME_BIN=$(node -e \"process.stdout.write(require('puppeteer').executablePath())\") ng test --browsers=ChromeHeadless",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit --no-verify -m 'chore(changelog): Updated CHANGELOG.md'",
"release:pre": "npm run clean && npm run build && npm run test",
"release:post": "npm run changelog && npm run changelog:add",
"release:major": "npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"release:minor": "npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"release:patch": "npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm run version-and-push",
"version-and-push": "git push origin && git push origin --tags && npm run publish-and-merge",
"publish-and-merge": "git checkout main && git merge develop && git push && git checkout develop",
"prepare": "husky && npm run build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
},
"dependencies": {
"vis-network": "~10.1.0",
"vis-timeline": "~8.5.0"
},
"peerDependencies": {
"@egjs/hammerjs": "^2.0.0",
"keycharm": "^0.3.0 || ^0.4.0",
"moment": "^2.24.0",
"propagating-hammerjs": "^1.4.0 || ^3.0.0",
"timsort": "^0.3.0",
"uuid": "^7.0.0 || ^9.0.0 || ^11.0.0 || ^13.0.0 || ^14.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^22.1.0",
"@angular-devkit/schematics": "^22.1.0",
"@angular/animations": "^22.1.0",
"@angular/cli": "^22.1.0",
"@angular/common": "^22.1.0",
"@angular/compiler": "^22.1.0",
"@angular/compiler-cli": "^22.1.0",
"@angular/core": "^22.1.0",
"@angular/forms": "^22.1.0",
"@angular/platform-browser": "^22.1.0",
"@angular/platform-browser-dynamic": "^22.1.0",
"@angular/platform-server": "^22.1.0",
"@angular/router": "^22.1.0",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@egjs/hammerjs": "^2.0.17",
"@types/hammerjs": "^2.0.0",
"@types/jasmine": "^5.0.0",
"@types/node": "^24.0.0",
"cpy-cli": "^7.0.0",
"eslint": "^8.40.0",
"husky": "^9.0.0",
"jasmine-core": "^6.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"keycharm": "^0.4.0",
"moment": "^2.30.1",
"ng-packagr": "^22.1.0",
"puppeteer": "^25.0.0",
"rimraf": "^6.1.3",
"rxjs": "~7.8.0",
"timsort": "^0.3.0",
"tslib": "^2.8.0",
"typescript": "~6.0.0",
"vis-data": "^8.0.0",
"vis-util": "~6.0.0",
"zone.js": "~0.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visjs/ngx-vis.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
},
"keywords": [
"angular2",
"ng2",
"vis",
"angular2-vis",
"ngx-vis",
"ngx-vis"
],
"author": "Martin Reinhardt <hypery2k>",
"license": "MIT",
"contributors": [
"Paul Hindenberg <contact.hindenberg@gmail.com>",
"Severin Friede <seveves>",
"Martin Reinhardt <hypery2k>"
],
"bugs": {
"url": "https://github.com/visjs/ngx-vis/issues"
},
"homepage": "https://github.com/visjs/ngx-vis#readme",
"allowScripts": {
"@parcel/watcher@2.6.0": true,
"esbuild@0.28.2": true,
"fsevents@2.3.3": true,
"msgpackr-extract@3.0.4": true,
"puppeteer@24.43.1": true,
"lmdb@3.5.6": true
}
}