-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.66 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
54
55
56
57
58
59
{
"name": "react-aspen",
"version": "1.2.0",
"description": "Most performant solution for rendering nested trees in React apps",
"main": "dist/index.js",
"typings": "dist/typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/neeksandhu/react-aspen.git"
},
"scripts": {
"test": "echo TESTS TODO!!!",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint --project .",
"prepack": "npm run lint && npm run build && npm run test && npm run generate-docs",
"postpublish": "npm run publish-docs",
"generate-docs": "typedoc --mode file --excludePrivate --excludeProtected --excludeNotExported --theme node_modules/typedoc-clarity-theme/bin --out dist/docs ./src",
"publish-docs": "gh-pages -d dist/docs"
},
"keywords": [
"react",
"virtualized",
"file",
"tree",
"nested",
"object",
"list"
],
"devDependencies": {
"@types/node": "^8.0.34",
"@types/p-series": "^1.0.1",
"@types/react": "^16.7.11",
"@types/react-dom": "^16.0.11",
"@types/react-window": "^1.1.0",
"gh-pages": "^2.0.1",
"tslint": "^5.12.1",
"typedoc": "^0.14.0",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "^3.2.2"
},
"dependencies": {
"aspen-tree-model": "^1.0.5",
"notificar": "^1.0.1",
"p-series": "^1.0.0",
"path-fx": "^2.1.1",
"react-window": "^1.3.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"author": "Neek Sandhu <neek.sandhu@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neeksandhu/react-aspen/issues"
},
"homepage": "https://github.com/neeksandhu/react-aspen#readme"
}