-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "ogham",
"version": "0.2.0",
"description": "convert an input string to its Ogham equivalent",
"main": "src/ogham.js",
"typings": "src/ogham.d.ts",
"scripts": {
"precommit": "npm run format && npm test",
"format": "prettier --write --single-quote src/*.js src/*.ts __test__/*.ts",
"prepublish": "tsc && npm run format ",
"test": "tsc && jest",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"keywords": [
"ogham",
"irish",
"gaelic",
"ogam",
"convert",
"transliterate"
],
"author": "Evan Shortiss <evanshortiss@gmail.com> (http://evanshortiss.com/)",
"license": "MIT",
"devDependencies": {
"@types/jest": "~22.2.0",
"@types/node": "~9.4.7",
"coveralls": "~3.0.0",
"husky": "~0.14.3",
"jest": "~22.4.2",
"prettier": "~1.11.1",
"ts-jest": "~22.4.1",
"typescript": "~2.7.2"
},
"jest": {
"testEnvironment": "node",
"cache": false,
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"engines": {
"node": ">=5"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/ogham.git"
},
"bugs": {
"url": "https://github.com/evanshortiss/ogham/issues"
},
"homepage": "https://github.com/evanshortiss/ogham#readme"
}