forked from iExecBlockchainComputing/iexec-server-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "iexec-server-js-client",
"version": "1.2.0",
"description": "JS client to interact with iExec REST API",
"main": "dist/iexec-server-js-client.js",
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/babel src --out-dir dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/iexec-server-js-client.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/iexec-server-js-client/issues"
},
"homepage": "https://github.com/iExecBlockchainComputing/iexec-server-js-client#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jest": "^22.4.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"cross-fetch": "^2.0.0",
"debug": "^3.1.0",
"dev-null": "^0.1.1",
"form-data": "^2.3.2",
"hash.js": "^1.1.3",
"json2xml": "^0.1.3",
"qs": "^6.5.1",
"through2": "^2.0.3",
"uuid": "^3.2.1",
"xml2js-es6-promise": "^1.1.1"
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
[
"env",
{
"targets": {
"firefox": "21"
}
}
]
]
}
}