-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "azbooka",
"version": "0.0.3",
"description": "представляет собой азбуку",
"source": "source/index.ts",
"scripts": {
"start": "parcel source/index.html",
"test": "jest",
"lint": "eslint",
"check": "tsc --noEmit",
"build": "parcel build source/index.html",
"ci": "npm build && npm test && npm lint && npm check",
"push-gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup --verbose"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
"text",
"cobertura"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksnow2k/azbuka.git"
},
"keywords": [
"azbuka",
"alphabet",
"symbols"
],
"author": "Leonid Perlin",
"license": "MIT",
"bugs": {
"url": "https://github.com/blacksnow2k/azbuka/issues"
},
"homepage": "https://github.com/blacksnow2k/azbuka#readme",
"dependencies": {
"@tensorflow/tfjs": "^4.2.0",
"parcel-bundler": "^1.12.5"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@types/jest": "^29.5.0",
"cssnano": "^4.1.11",
"jest": "^29.5.0",
"parcel": "^2.8.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}