-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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": "@kbobrowski/squarelate",
"version": "1.1.2",
"description": "Squarespace translator",
"main": "dist/index.js",
"browser": "dist/squarelate.min.js",
"unpkg": "dist/squarelate.min.js",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && rollup -c",
"test": "jest",
"prepublish": "npm t && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbobrowski/squarelate.git"
},
"keywords": [
"translate",
"squarespace",
"i18n",
"l10n",
"translator"
],
"author": "Kamil Bobrowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/kbobrowski/squarelate/issues"
},
"homepage": "https://github.com/kbobrowski/squarelate#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/jest": "^26.0.15",
"@types/jquery": "^3.5.4",
"jest": "^26.6.1",
"rollup": "^2.33.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"dependencies": {
"file-saver": "^2.0.2",
"jquery": "^3.5.1"
}
}