-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "newick-tree-parser",
"version": "1.0.0",
"description": "A Newick format and tree structure parser.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/webpack -w",
"lint": "esw webpack.config.* src --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zlluGitHub/newick-tree-parser.git"
},
"keywords": [
"newick",
"tree",
"parser"
],
"author": "Kir Tribunsky",
"license": "ISC",
"bugs": {
"url": "https://github.com/zlluGitHub/newick-tree-parser/issues"
},
"homepage": "https://github.com/zlluGitHub/newick-tree-parser#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"eslint": "^4.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.2.0",
"eslint-watch": "^3.1.2",
"webpack": "^3.1.0"
}
}