-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "build-tree-datasource",
"version": "1.2.0",
"type": "module",
"description": "build a dataSource for common ui trees",
"main": "cjs/index.js",
"module": "es/index.js",
"scripts": {
"test": "node --experimental-modules mock.mjs",
"prebuild": "rm -rf es/* cjs/*",
"build": "npm run prebuild && rollup -c"
},
"author": "lane",
"license": "MIT",
"types": "index.d.ts",
"keywords": [
"build-tree",
"tree",
"buildTree",
"build-tree-datasource"
],
"homepage": "https://github.com/rookie-luochao/build-tree-datasource#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rookie-luochao/build-tree-datasource.git"
},
"bugs": {
"url": "https://github.com/rookie-luochao/build-tree-datasource/issues"
},
"files": [
"es/",
"cjs/",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"minimist": ">=1.2.3",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3"
}
}