-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "react-make-t",
"version": "1.0.1",
"description": "Simple internationalization library for React applications",
"files": [
"dist/index.js",
"dist/index.d.ts",
"LICENSE"
],
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"types": "dist/index.d.ts",
"peerDependencies": {
"react": ">= 16.3.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.16",
"@types/jest": "^25.1.3",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"jest": "^24.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rimraf": "^2.6.2",
"standard": "^11.0.1",
"ts-jest": "~23.1.4",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.0.0",
"typescript": "^3.3.1"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run jest",
"build": "npm run clean && tsc",
"lint": "npm run lint:ts && npm run lint:js",
"lint:ts": "tslint -p .",
"lint:ts:fix": "tslint -p . --fix",
"lint:js": "standard",
"lint:js:fix": "standard --fix",
"clean": "rimraf dist",
"jest": "jest --config=./jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tevim/react-make-t.git"
},
"keywords": [
"globalization",
"internationalization",
"i18n",
"localization",
"l10n",
"nextjs",
"next",
"react",
"reactjs",
"translation"
],
"author": "tevim",
"license": "MIT",
"bugs": {
"url": "https://github.com/tevim/react-make-t/issues"
},
"homepage": "https://github.com/tevim/react-make-t#readme"
}