-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 895 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 895 Bytes
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
{
"name": "@infinium/tree",
"version": "1.0.0",
"description": "Work with tree structures in JavaScript",
"private": false,
"author": "Infinium LLC.",
"license": "MIT",
"repository": "https://github.com/Infinium8/Tree",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build"
},
"devDependencies": {
"@types/node": "^12.12.38",
"cross-env": "^7.0.2",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"typescript": "^3.7.5"
},
"files": [
"dist"
],
"dependencies": {
"@types/react": "^17.0.38",
"react-dom": "^17.0.2"
},
"peerDependencies": {
"react": "^17.0.2"
}
}