-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
51 lines (51 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
{
"name": "vs-tree",
"version": "2.1.14",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yangjingyu/vs-tree"
},
"homepage": "https://yangjingyu.github.io/vs-tree/",
"bugs": "https://github.com/yangjingyu/vs-tree/issues",
"author": {
"name": "Yangjingyu",
"url": "https://github.com/yangjingyu"
},
"main": "./dist/vs-tree.js",
"types": "./types/src/main.d.ts",
"module": "./dist/vs-tree.js",
"unpkg": "./dist/vs-tree.js",
"style": "./dist/vs-tree.css",
"scripts": {
"dev": "rollup -c --watch",
"build": "NODE_ENV=production rollup -c",
"lint": "eslint ./ --fix"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"autoprefixer": "8.0.0",
"cssnano": "^4.1.10",
"eslint-config-standard": "14.1.1",
"eslint-plugin-standard": "^5.0.0",
"less": "^3.12.2",
"rollup": "^2.34.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"standard": "^16.0.3",
"typescript": "^4.1.3"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 10"
]
}