-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.5 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.5 KB
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": "oxford",
"version": "3.0.3",
"description": "Localization/String library module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:snypelife/oxford.git"
},
"keywords": [
"l10n"
],
"author": "Brett Rogerson <brettmrogerson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/snypelife/oxford/issues"
},
"scripts": {
"cov": "opener ./coverage/lcov-report/index.html",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"*.js",
"lib/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"__tests__/oxford-plugin-local-test/"
]
},
"standard": {
"env": [
"jest"
]
},
"homepage": "https://github.com/snypelife/oxford",
"resolutions": {
"kind-of": "^6.0.3",
"minimist": "^1.2.5"
},
"devDependencies": {
"coveralls": "^3.1.1",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^13.2.1",
"opener": "^1.5.2",
"oxford-plugin-test": "^1.0.0",
"prettier-standard": "^13.0.6"
},
"dependencies": {
"he": "^1.2.0",
"lodash": "^4.17.21",
"traverse": "^0.6.6"
}
}