forked from square/svelte-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.12 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
{
"name": "@square/svelte-store",
"version": "1.0.13",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/square/svelte-store.git"
},
"scripts": {
"build": "yarn cleanup && tsc",
"prepublishOnly": "yarn build",
"cleanup": "rm -rf ./lib/",
"lint": "eslint './src/**/*.{js,ts}'",
"test": "jest --env=jsdom --verbose",
"test:watch": "yarn test -- --watch"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": [
"babel-jest"
]
},
"moduleFileExtensions": [
"js",
"ts"
],
"roots": [
"./test"
]
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-plugin-square": "^20.0.2",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.5.5"
},
"dependencies": {
"cookie-storage": "^6.1.0",
"svelte": "^3.0.0"
},
"license": "ISC",
"author": "Square",
"type": "module"
}