-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "sveltik",
"version": "0.1.16",
"repository": "github:nathancahill/sveltik",
"author": "Nathan Cahill <nathan@nathancahill>",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@rollup/plugin-node-resolve": "^13.0.4",
"@testing-library/jest-dom": "^5.14.1",
"babel-jest": "^27.0.6",
"dainte": "^0.1.5",
"jest": "^27.0.6",
"jsdom": "^16.7.0",
"prettier": "^2.3.2",
"prettier-plugin-svelte": "^2.3.1",
"rollup": "^2.55.1",
"rollup-plugin-svelte": "^7.1.0"
},
"dependencies": {
"lodash-es": "^4.0.0",
"svelte": "^3.23.0"
},
"keywords": [
"svelte"
],
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"format": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.svelte\"",
"test": "jest",
"preversion": "yarn run test",
"postversion": "git push && git push --tags"
}
}