-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 882 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
40
41
{
"name": "js-tree",
"version": "2.0.2",
"description": "Tree structure in javascript",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist --ignore '*.test.js'",
"test": "jest --coverage",
"pretest": "npm run build",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swiftcarrot/js-tree.git"
},
"keywords": [
"tree"
],
"author": "Wang Zuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/swiftcarrot/js-tree/issues"
},
"homepage": "https://github.com/swiftcarrot/js-tree",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-preset-env": "^1.6.0",
"jest": "^21.1.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"babel": {
"presets": [
"env"
]
}
}