-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "@kbase/ui-lib",
"version": "0.7.1",
"description": "A typescript library to support kbase-ui and plugins",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"/lib/**/*",
"/src/**/*",
"!/lib/**/*.test.*"
],
"scripts": {
"test": "jest src",
"copy-assets": "copyfiles -u 1 \"./src/**/*.css\" \"./lib/\"",
"clean": "rm -rf ./lib/*",
"build": "tsc",
"prepack": "tsc",
"prepublishOnly": "jest src",
"start": "tsc --watch",
"generate-api-docs": "typedoc --out api-docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbaseIncubator/kbase-ui-lib.git"
},
"keywords": [
"kbase",
"ui",
"lib",
"typescript"
],
"author": "KBase Developers",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/kbaseIncubator/kbase-ui-lib/issues"
},
"homepage": "https://github.com/kbaseIncubator/kbase-ui-lib#readme",
"dependencies": {
"@types/bluebird": "3",
"@types/js-cookie": "3",
"@types/uuid": "9",
"bluebird": "^3.0.0",
"js-cookie": "^3.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/dom": "9.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.4.0",
"copyfiles": "2.4.1",
"eslint": "8.34.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-transform-css": "6.0.1",
"ts-jest": "29.0.5",
"typedoc": "0.23.25",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public"
}
}