-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
54
{
"name": "multidict",
"version": "1.0.6",
"description": "Spell check in multiple languages with this Firefox addon",
"main": "src/background.js",
"scripts": {
"build": "bash tasks/build.sh",
"docs": "node_modules/jsdoc/jsdoc.js -c jsdoc-config.json --pedantic",
"lint": "eslint ./src/ ./test/",
"lint-fix": "eslint ./src/ --fix",
"publish": "web-ext build && zip dist/sourcecode -r src/**",
"serve": "bash tasks/build.sh && web-ext run",
"showcoverage": "firefox coverage/lcov-report/index.html",
"test": "nyc --reporter=lcov mocha",
"update-dicts": "bash tasks/update-dicts.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GrayedFox/multidict.git"
},
"keywords": [
"firefox",
"extension",
"dictionary",
"spelling"
],
"author": "Che Fisher",
"license": "MIT",
"bugs": {
"url": "https://github.com/GrayedFox/multi-dict/issues"
},
"homepage": "https://github.com/GrayedFox/multi-dict#readme",
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jsdoc": "^3.6.7",
"jsdom": "^16.5.3",
"minami": "^1.2.3",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^10.0.0",
"sinon-chrome": "^3.0.1",
"web-ext": "^6.1.0"
},
"dependencies": {
"nspell": "^2.1.5"
}
}