-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 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
{
"name": "i18next-korean-postposition-processor",
"version": "1.0.0",
"description": "korean postposition postprocessor for i18next",
"main": "index.js",
"scripts": {
"build": "tsc -p src",
"test": "cross-env TS_NODE_PROJECT=test/tsconfig.json TS_NODE_FILES=true nyc mocha --require ts-node/register \"test/*.ts\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm test && npm run build",
"lint": "tslint src/*.ts test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Perlmint/i18next-korean-postposition-processor.git"
},
"keywords": [
"i18next",
"korean",
"postposition"
],
"author": "Gyusun Yeom",
"license": "MIT",
"bugs": {
"url": "https://github.com/Perlmint/i18next-korean-postposition-processor/issues"
},
"homepage": "https://github.com/Perlmint/i18next-korean-postposition-processor#readme",
"peerDependencies": {
"i18next": ">=8.4.0"
},
"files": [
"*.js",
"*.d.ts",
"modifiers",
"testers",
"README.md"
],
"devDependencies": {
"@types/chai": "^4",
"@types/mocha": "^9",
"chai": "^4",
"cross-env": "^7",
"i18next": ">=8.4.0",
"mocha": "^9",
"nyc": "^15",
"ts-node": "^10",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test",
"coverage",
"modifiers",
"testers",
"*.js"
],
"reporter": [
"html",
"text"
],
"all": true
}
}