-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.03 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
79
80
81
82
83
84
85
86
{
"name": "svelte-boring-avatars",
"svelte": "dist/index.js",
"exports": {
".": {
"svelte": "./dist/index.js",
"types": "./dist/ts/index.d.ts"
}
},
"module": "dist/index.mjs",
"main": "dist/index.umd.js",
"types": "dist/ts/index.d.ts",
"author": "Paolo Tiu <[email protected]>",
"license": "MIT",
"version": "1.2.6",
"sideEffects": false,
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"validate": "svelte-check",
"prepublishOnly": "npm run build",
"test": "jest tests"
},
"files": [
"src",
"dist"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^1.0.10",
"@types/jest": "^27.0.1",
"babel-jest": "^27.1.0",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"prettier-plugin-svelte": "^2.4.0",
"rollup": "^2.32.0",
"rollup-plugin-execute": "^1.1.1",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.5.2",
"svelte": "^3.24.0",
"svelte-check": "^2.2.5",
"svelte-jester": "^1.8.2",
"svelte-preprocess": "^4.5.1",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"keywords": [
"svelte",
"avatars",
"boring-avatars"
],
"repository": {
"type": "git",
"url": "https://github.com/paolotiu/svelte-boring-avatars.git"
},
"jest": {
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"svelte",
"ts"
]
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}