-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "onesky-fetch",
"version": "0.0.7",
"description": "Fetch and upload translation files from www.oneskyapp.com working in node.js and browser apps.",
"main": "distribution/node.index.js",
"browser": "distribution/browser.index.js",
"react-native": "distribution/browser.index.js",
"scripts": {
"lint": "eslint source",
"test": "jest",
"build": "babel source --out-dir distribution --ignore __mocks__,__tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rkretzschmar/onesky-fetch.git"
},
"keywords": [
"onesky"
],
"author": "Rene Kretzschmar",
"license": "MIT",
"bugs": {
"url": "https://github.com/rkretzschmar/onesky-fetch/issues"
},
"homepage": "https://github.com/rkretzschmar/onesky-fetch#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"eslint": "^3.16.1",
"eslint-plugin-babel": "^4.1.0",
"fetch-mock": "^5.9.4",
"jest": "^19.0.2"
},
"dependencies": {
"md5": "^2.2.1",
"node-fetch": "^1.6.3"
}
}