-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "@thalesrc/resize-manager",
"version": "0.0.0",
"description": "Improved Resize Events of Window & Dom Elements",
"main": "index.js",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"document": "typedoc --out docs --excludeNotExported --excludePrivate --disableOutputCheck --gitRevision master",
"build:github-pages": "npm run document && echo \"\" > ./docs/.nojekyll",
"build:legacy": "tsc -p ./tsconfig.legacy.json",
"version-update": "npm version $PACKAGE_VERSION --no-git-tag-version",
"change-ts-version": "rjp ./package.json typescript ~3.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gen-tech/resize-manager.git"
},
"keywords": [
"window",
"dom",
"element",
"resize",
"events",
"observable",
"start",
"end",
"resizing"
],
"author": "alisahinozcelik@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/gen-tech/resize-manager/issues"
},
"homepage": "https://gen-tech.github.io/resize-manager",
"devDependencies": {
"@types/node": "^14.6.2",
"chalk": "^4.1.0",
"replace-json-property": "^1.4.3",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@thalesrc/js-utils": "^2.9.3",
"rxjs": "^6.4.0"
}
}