-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"version": "0.8.17",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "lerna run format",
"lint": "lerna run lint",
"push": "lerna publish --conventional-commits --create-release=github",
"pin-cdn": "node scripts/pin-cdn.js && yarn commit-latest-version-changes",
"commit-latest-version-changes": "git add packages/upscalerjs/src/constants.ts *examples/*/package.json* && git commit -m \"Updating CDN && example versions\" --no-verify",
"version": "yarn pin-cdn",
"postversion": "lerna run build",
"bootstrap": "lerna bootstrap --hoist"
},
"pre-commit": [
"lint",
"format"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thekevinscott/UpscalerJS.git"
},
"author": "Kevin Scott",
"license": "MIT",
"homepage": "https://github.com/thekevinscott/UpscalerJS",
"peerDependencies": {
"@tensorflow/tfjs": "2.8.6"
},
"devDependencies": {
"@tensorflow/tfjs": "2.8.6",
"@types/jest": "^26.0.7",
"codecov": "^3.7.2",
"docsify-cli": "^4.4.2",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.2.0",
"lerna": "^3.14.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"ts-jest": "^26.1.4",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7",
"uglify": "^0.1.5",
"yargs": "^16.2.0"
},
"dependencies": {
"tensor-as-base64": "^0.1.1"
}
}