-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 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
50
51
{
"name": "svelte-actions",
"version": "0.2.2",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"preversion": "npm run build",
"version": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md",
"prepublishOnly": "git push && git push --tags && gh-release",
"test": "mocha ./src/test.ts",
"format": "prettier --write src/**/*.ts",
"check": "tsc --noEmit"
},
"keywords": [
"svelte"
],
"files": [
"src",
"dist"
],
"author": "swyx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sw-yx/svelte-actions.git"
},
"bugs": {
"url": "https://github.com/sw-yx/svelte-actions/issues"
},
"homepage": "https://github.com/sw-yx/svelte-actions#readme",
"description": "",
"devDependencies": {
"@types/jsdom": "^16.2.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.10",
"auto-changelog": "^2.2.1",
"gh-release": "^4.0.3",
"jsdom": "^16.4.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"sinon": "^9.2.3",
"sucrase": "^3.17.0",
"svelte": "^3.29.4",
"typescript": "^4.0.5"
},
"exports": {
"import": "./dist/index.js"
}
}