-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@mantlebee/ts-data",
"version": "0.1.0",
"description": "Models and utils to navigate and interact with data.",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"files": [
"docs/**/*",
"dist/**/*"
],
"scripts": {
"build": "rollup --config && tsc-alias",
"coverage": "jest --coverage --collectCoverageFrom='./src/**'",
"doc": "typedoc",
"prepublishOnly": "npm run build && npm run doc",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mantlebee/ts-data.git"
},
"keywords": [
"typescript",
"common",
"utilities"
],
"author": "MantleBee",
"license": "MIT",
"bugs": {
"url": "https://github.com/mantlebee/ts-data/issues"
},
"homepage": "https://github.com/mantlebee/ts-data#readme",
"devDependencies": {
"@rollup/plugin-typescript": "8.3.2",
"@types/jest": "24.0.19",
"jest": "26.6.3",
"rollup": "2.75.5",
"rollup-plugin-cleaner": "1.0.0",
"ts-jest": "26.4.3",
"tsc-alias": "1.6.8",
"typedoc": "0.22.17",
"typescript": "4.7.2"
},
"dependencies": {
"@mantlebee/ts-core": "0.13.0"
}
}