-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.98 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
69
70
{
"name": "i18n-modules",
"version": "1.0.1",
"description": "Isolated I18N modules",
"license": "MIT",
"homepage": "https://github.com/VodkaBears/i18n-modules",
"repository": {
"type": "git",
"url": "git://github.com/VodkaBears/i18n-modules.git"
},
"bugs": {
"url": "https://github.com/VodkaBears/i18n-modules/issues"
},
"author": {
"name": "Ilya Makarov",
"email": "[email protected]",
"url": "https://github.com/VodkaBears"
},
"keywords": [
"i18n",
"l10n",
"internationalization",
"localization",
"translations",
"modules"
],
"main": "lib/index.js",
"files": [
"lib",
"src",
"*.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf example/build && rm -rf lib",
"build": "babel src --out-dir lib",
"example:build-client": "webpack --config example/webpack.client.config.js",
"example:build-server": "webpack --config example/webpack.server.config.js",
"example:build": "npm run example:build-client && npm run example:build-server",
"example": "npm run clean && npm run build && npm run example:build && node example/app",
"lint": "eslint src example --ignore-path .gitignore",
"test": "npm run lint",
"start": "npm run example",
"prepublish": "npm run clean && npm run build",
"precommit": "npm test"
},
"dependencies": {
"node-polyglot": "^2.2.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.15.2",
"husky": "^0.13.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"webpack": "^2.4.1"
}
}