-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 874 Bytes
/
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
{
"name": "@bluepostit/data-tree",
"version": "1.0.1",
"description": "A tree of nodes representing a hierarchy of data components",
"source": "src/node.js",
"files": [
"dist/*"
],
"main": "./dist/node.js",
"scripts": {
"dev": "microbundle --watch",
"build": "microbundle",
"lint": "prettier --check src test",
"format": "prettier --write src test",
"prepare": "microbundle",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"data",
"nodes",
"tree",
"path",
"hierarchy"
],
"author": "bluepostit",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bluepostit/data-tree.git"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"core-js": "^3.19.3",
"jest": "^27.4.4",
"microbundle": "^0.14.2",
"prettier": "^2.5.1"
}
}