-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "svelte-tree-viewer",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"license": "MIT",
"version": "1.0.1",
"scripts": {
"build": "rollup -c",
"test": "jest src",
"eslint": "eslint src",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-node-resolve": "^9.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^27.2.4",
"eslint": "^7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^27.2.4",
"jest-transform-svelte": "^2.1.1",
"rollup": "^2.0.0",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.0.0"
},
"keywords": [
"svelte",
"tree-view",
"component-library"
],
"files": [
"src",
"dist"
],
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"svelte-fa": "^2.3.3"
}
}