-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 966 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
{
"name": "@jtoodre/hierarchy-tree",
"version": "1.0.0",
"description": "Creates tree from objects",
"main": "./dist/index.js",
"repository": "https://github.com/jantoodre/hierarchy-tree.git",
"author": "Jan Toodre",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.9.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"typescript": "^4.2.4"
},
"keywords": [
"hierarchy",
"tree",
"nested"
],
"bugs": {
"url": "https://github.com/jantoodre/hierarchy-tree/issues"
},
"homepage": "https://github.com/jantoodre/hierarchy-tree#readme"
}