-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "operation-tree-node",
"version": "1.1.4",
"author": "yujinpan",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "types/index.d.ts",
"keywords": [
"operation-tree",
"tree-node",
"tree-structure"
],
"files": [
"lib",
"types",
"README.md"
],
"scripts": {
"publish:beta": "release-ops beta",
"publish:patch": "release-ops patch",
"version": "npm run build",
"postversion": "git push --all && git push --tags",
"build": "rollupx",
"test": "jest"
},
"dependencies": {
"core-js": "^3.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^29.7.0",
"prettier": "2.8.3",
"release-ops": "^1.0.1",
"rollup": "^4.18.0",
"rollupx": "^3.1.12",
"ts-jest": "^29.1.4",
"typescript": "^4.9.4"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/yujinpan/operation-tree-node/issues"
},
"homepage": "https://github.com/yujinpan/operation-tree-node#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:yujinpan/operation-tree-node.git"
}
}