-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.64 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.64 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
75
76
77
78
79
80
81
82
83
{
"name": "react-i18n-wrapper",
"version": "18.1.0",
"description": "Use your favorite i18n library in React.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && npm run lint && npm run test:unittest",
"precommit:test": "npm run build && lint-staged && npm run precommit:unittest",
"build": "tsc",
"clean": "rm -rf dist types coverage",
"test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|tsx)'",
"precommit:unittest": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|tsx)'",
"lint": "npm run lint:source && npm run lint:tests",
"lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"tslint -c tslint.json -t stylish"
],
"test/**/*.{ts,tsx}": [
"tslint -c test/tslint.json -t stylish"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run precommit:test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/benbria/react-i18n-wrapper.git"
},
"keywords": [
"react",
"i18n",
"translate",
"translations",
"internationalization",
"l10n"
],
"author": "Benbria",
"license": "MIT",
"bugs": {
"url": "https://github.com/benbria/react-i18n-wrapper/issues"
},
"homepage": "https://github.com/benbria/react-i18n-wrapper#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@benbria/semantic-release-config": "^1.0.0",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/npm": "^5.0.5",
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.0.9",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"husky": "^1.1.2",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react": "^16.12.0",
"react-dom": "^16.8.5",
"semantic-release": "^15.13.8",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.3.4000"
},
"dependencies": {}
}