-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@nteract/directory-listing",
"version": "2.1.0",
"description": "A directory listing component that can be used across nteract ecosystem (and beyond)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"nteractDesktop": "src/index.tsx",
"scripts": {
"build": "tsc -b",
"test": "jest"
},
"dependencies": {
"@nteract/octicons": "^2.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-hot-loader": "^4.1.2",
"react-timeago": "^4.1.9"
},
"peerDependencies": {
"react": "^16.3.2",
"styled-components": ">= 4"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"directory-listing",
"react",
"notebook tree view"
],
"author": "Alexander C. Booth <[email protected]",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.4",
"@types/react-timeago": "^4.1.1",
"@types/styled-components": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"jest": "^25.1.0",
"styled-components": "^4.4.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}