-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
55
56
{
"name": "@marketto/diacritic-remover",
"version": "1.0.8",
"description": "Tool to replace diacritics in strings",
"main": "dist/diacritic-remover.js",
"module": "dist/diacritic-remover.mjs",
"types": "dist/diacritic-remover.d.ts",
"bugs": {
"url": "https://github.com/Marketto/diacritic-remover/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marketto/diacritic-remover.git"
},
"keywords": [
"diacritic",
"remover",
"replace",
"accent",
"typescript"
],
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@rollup/plugin-json": "^4.0.3",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.37",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"mocha": "^7.1.2",
"nyc": "^14.1.1",
"relcov": "^1.0.6",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"ts-node": "^8.9.1",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
},
"scripts": {
"release": "npm audit fix && npm run lint-fix && npm run coverage && npm run build",
"build": "npx rimraf ./dist & npx rollup -c",
"lint": "npx tslint -c tslint.json \"src/**/*.ts\"",
"lint-fix": "npx tslint -c tslint.json \"src/**/*.ts\" --fix",
"test": "npx nyc npx mocha",
"coverage": "mkdir coverage & npm run test && npx nyc report --reporter=text-lcov | npx relcov > coverage/lcov.info"
},
"author": "Marco Ricupero <marco.ricupero@gmail.com>",
"license": "MIT"
}