-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 886 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": "lemon-tree",
"version": "4.3.8",
"description": "js tree 树 操作",
"main": "./lib/lemon",
"typings": "types/index.d.ts",
"repository": "https://github.com/zhangporco/lemon-tree.git",
"author": "Porco home <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "ava --verbose",
"build": "babel src -d lib"
},
"ava": {
"files": [
"./test/getNodeById.test.js"
],
"require": [
"babel-register"
]
},
"devDependencies": {
"ava": "^0.25.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017-node7": "^0.5.2",
"babel-preset-stage-0": "^6.24.1"
},
"dependencies": {
"lodash": "^4.17.11"
}
}