-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "tree-lodash",
"version": "0.4.0",
"description": "Easily control the tree structure as you would with lodash.js (像使用 lodash.js 一样方便地操控树结构)",
"keywords": [
"tree",
"lodash",
"functional",
"browser",
"node",
"umd",
"esm"
],
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"license": "MIT",
"homepage": "https://zhangshichun.github.io/tree-lodash/",
"repository": "https://github.com/zhangshichun/tree-lodash",
"bugs": "https://github.com/zhangshichun/tree-lodash/issues",
"author": "https://github.com/zhangshichun",
"scripts": {
"build": "run-p \"build:*\"",
"build:umd": "cross-env NODE_ENV=production rollup -c rollup.umd.config.js",
"build:esm": "cross-env NODE_ENV=production rollup -c rollup.esm.config.js",
"postbuild": "tsc --emitDeclarationOnly --declaration --project ts.config.json --outDir dist/esm",
"test": "cross-env TS_NODE_PROJECT='test/tsconfig.test.json' mocha",
"nyc": "cross-env TS_NODE_PROJECT='test/tsconfig.test.json' nyc --reporter=text mocha",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"predeploy": "yarn docs:build",
"deploy": "gh-pages -d docs/.vuepress/dist -t true"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.17.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-beep": "^0.2.0",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.3",
"@types/sinon": "^10.0.15",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.14.43",
"gh-pages": "^5.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rollup": "^2.68.0",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vuepress": "^1.9.9"
},
"dependencies": {},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"mocha": {
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"ui": "bdd"
}
}