forked from evenchange4/react-intl-po
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.14 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-intl-po",
"version": "1.1.0",
"description": "Extract POT from react-intl and convert back to json.",
"author": "Michael Hsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/evenchange4/react-intl-po/issues"
},
"homepage": "https://github.com/evenchange4/react-intl-po#readme",
"repository": {
"type": "git",
"url": "https://github.com/evenchange4/react-intl-po.git"
},
"main": "lib/index.js",
"bin": {
"rip": "lib/cli.js",
"react-intl-po": "lib/cli.js"
},
"files": [
"lib",
"src",
"test"
],
"keywords": [
"react-intl",
"babel-plugin-react-intl",
"po",
"pot"
],
"scripts": {
"clean": "rm -rf lib",
"prebuild": "npm run clean",
"build": "NODE_ENV=production babel src --out-dir lib",
"test": "ava",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc npm run test",
"coverage": "nyc report --reporter=lcov && codecov",
"lint:js": "eslint --ignore-path .gitignore .",
"lint": "npm run lint:js",
"prepublish": "npm run build"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"codecov": "^1.0.1",
"eslint": "^3.13.0",
"lint-config-m": "^3.1.0",
"nyc": "^10.0.0",
"stylelint": "^7.7.1"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"ava": {
"files": [
"test/**/*.test.js"
],
"failFast": true,
"verbose": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"test/**"
],
"include": [
"src/**"
]
},
"eslintConfig": {
"extends": [
"./node_modules/lint-config-m/eslint.js"
]
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"glob": "^7.1.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"po2json": "^0.4.5",
"to-object-by": "^1.1.0"
}
}