-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.33 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
{
"name": "riw",
"version": "0.8.0",
"description": "A console app and library to help you localise React apps in conjunction with react-intl",
"keywords": [
"react-intl",
"i18n",
"internationalisation",
"internationalization",
"l10n",
"localisation",
"localization",
"translation",
"react",
"cli",
"console",
"terminal",
"term"
],
"main": "./dist/index.js",
"bin": {
"riw": "./dist/bin/cli-shim.js"
},
"files": [
"dist/",
"doc/"
],
"homepage": "https://github.com/avaragado/riw#readme",
"repository": "avaragado/riw",
"bugs": "https://github.com/avaragado/riw/issues",
"author": {
"name": "David Smith",
"email": "riw@avaragado.org",
"url": "https://avaragado.org"
},
"license": "MIT",
"scripts": {
"start": "nps",
"test": "nps test"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.3",
"concurrently": "^3.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.69.0",
"flow-copy-source": "^1.1.0",
"flow-coverage-report": "^0.5.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.3",
"mock-fs": "^4.2.0",
"nps": "^5.9.0",
"rimraf": "^2.6.1",
"standard-version": "^4.0.0"
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-react-intl-auto": "^1.1.0",
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"bardot": "^0.2.2",
"chalk": "^2.3.2",
"fallback-cli": "^2.0.2",
"find-up": "^2.1.0",
"glob": "^7.1.1",
"json-stable-stringify": "^1.0.1",
"mkdirp": "^0.5.1",
"ora": "^2.0.0",
"outdent": "^0.5.0",
"ramda": "^0.25.0",
"yargs": "^11.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/helpers/"
]
}
}