-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "@ipno/react-lang",
"version": "1.0.2",
"description": "React library for manage app localization.",
"main": "./lib/index.js",
"module": "es/index.js",
"scripts": {
"start": "webpack-dev-server",
"clean:es5": "rimraf lib",
"clean:es6": "rimraf es",
"clean": "npm run clean:es5 && npm run clean:es6",
"build:es5": "npm run clean:es5 && tsc -p tsconfig.production.es5.json",
"build:es6": "npm run clean:es6 && tsc -p tsconfig.production.es6.json",
"build": "npm run build:es5 && npm run build:es6",
"prepare": "npm run build",
"release": "npm pack && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"src",
"es"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/Ipno84/react-lang.git"
},
"keywords": [
"react",
"language",
"localization",
"lang",
"i18n"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ipno84/react-lang/issues"
},
"homepage": "https://github.com/Ipno84/react-lang#readme",
"devDependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"jest": "^24.9.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-is": "^16.11.0",
"rimraf": "^3.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}