-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.95 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
57
58
59
60
61
62
63
{
"name": "phonetic-alphabet-converter",
"version": "1.1.0",
"description": "NATO phonetic alphabet converter.",
"author": "Mark <[email protected]>",
"main": "cjs/index.js",
"scripts": {
"build": "npm run build:cjs && npm run build:umd",
"build:cjs": "tsc --declaration --outDir cjs",
"build:umd": "rollup --config",
"clean": "rm -rf cjs umd",
"lint": "npm run lint:js && npm run lint:ts && npm run lint:tsc",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:ts": "npm run lint:js -- --ext .ts",
"lint:tsc": "tsc --noEmit",
"lint:fix": "npm run lint:js -- --fix && npm run lint:ts -- --fix",
"prepublishOnly": "pinst --disable && npm run lint && npm test && npm run clean && npm run build",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"release": "standard-version --no-verify",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"homepage": "https://remarkablemark.org/phonetic-alphabet-converter/",
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/phonetic-alphabet-converter"
},
"bugs": {
"url": "https://github.com/remarkablemark/phonetic-alphabet-converter/issues"
},
"keywords": [
"nato",
"phonetic",
"alphabet",
"converter"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"pinst": "^2.1.6",
"prettier": "^2.1.2",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"files": [
"cjs/",
"umd/"
],
"license": "MIT"
}