-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "iexec-server-js-client",
"version": "2.0.3",
"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.7.0",
"eslint": "5.6.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"jest": "23.6.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"cross-fetch": "2.2.2",
"debug": "4.1.0",
"dev-null": "^0.1.1",
"jsontoxml": "1.0.1",
"qs": "^6.5.2",
"through2": "^2.0.3",
"uuid": "3.3.2",
"xml2js-es6-promise": "^1.1.1"
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
[
"env",
{
"targets": {
"firefox": "21"
}
}
]
]
}
}