-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "ort",
"version": "0.1.3",
"description": "Automatic spelling correction for Polish language, both in wikicode and plaintext",
"homepage": "http://tools.wikimedia.pl/~derbeth/ort/",
"author": "Piotr Kubowicz <[email protected]> (https://github.com/Derbeth)",
"contributors": [],
"keywords": [
"spelling",
"ortography",
"Polish"
],
"main": "./dist/ort.js",
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/Derbeth/ortjs.git"
},
"bugs": {
"url": "https://github.com/Derbeth/ortjs/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"eslint": "~6.8.0",
"jasmine-core": "~3.5.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "~3.1.1",
"karma-spec-reporter": "~0.0.26",
"nyc": "^15.1.0",
"puppeteer": "^8.0.0"
},
"scripts": {
"check": "eslint --fix src && eslint --fix --env jasmine test",
"compile": "babel src/ -d dist/",
"test": "rm -rf tmp/ && npm run check && npm run compile && babel test/browser.js -d tmp/ && karma start --single-run && node test/texts.js",
"texts": "npm run check && npm run compile && node test/texts.js",
"coverage": "eslint src && npm run compile && nyc --reporter=html node test/texts.js",
"karma": "npm run check && babel test/browser.js -d tmp/ && karma start --single-run",
"prepare": "npm run check && npm run compile"
},
"browserslist": "> 1% in PL, last 2 versions, Firefox ESR, not dead",
"dependencies": {}
}