-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 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
{
"name": "anki-leo",
"version": "4.0.3",
"description": "Chrome extension to export dictionary from LinguaLeo to CSV/Anki",
"main": "src/leo-export.js",
"devDependencies": {
"cross-zip-cli": "^1.0.0",
"esm": "^3.2.25",
"parcel-bundler": "^1.12.3",
"parcel-plugin-web-extension": "^1.5.2",
"standard": "17.0.0",
"standard-version": "^7.0.0",
"tap-min": "^2.0.0",
"zora": "3.1.7"
},
"scripts": {
"test": "node src/js/all.test.js | tap-min",
"lint": "standard --fix",
"start": "yarn build && parcel watch src/manifest.json",
"build:locales": "cp -r src/_locales/ src/js/locales",
"build": "yarn build:locales && parcel build src/manifest.json --no-minify && sed -i '' '1s;^;var ;' ./dist/js/index.js",
"release:package": "yarn build && cd dist/ && cross-zip . ../anki-leo.zip && cd -",
"release:version": "standard-version",
"release": "yarn lint && yarn test && yarn release:package && yarn release:version"
},
"repository": {
"type": "git",
"url": "https://github.com/troggy/anki-leo.git"
},
"author": "Kosta Korenkov",
"license": "ISC",
"bugs": {
"url": "https://github.com/troggy/anki-leo/issues"
},
"homepage": "http://troggy.github.io/anki-leo/"
}