-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
{
"name": "swarm-api",
"version": "0.1.2",
"description": "JavaScript library for easily interacting with Swarm distributed storage.",
"main": "dist/node/index.js",
"browser": {
"request": "xhr",
"./dist/node/index.js": "./dist/browser/browser.js"
},
"bin": {
"swarmapi": "./bin/swarmapi"
},
"browserslist": [
"last 1 version",
"not dead",
"> 0.2%"
],
"files": [
"dist",
"swarm-api.min.js",
"bin/swarmapi",
"src"
],
"scripts": {
"lint": "./node_modules/.bin/eslint src/",
"babel": "npm run babel:browser && npm run babel:node",
"babel:browser": "cross-env BABEL_ENV=browser babel --out-dir dist/browser src",
"babel:node": "cross-env BABEL_ENV=node babel --out-dir dist src",
"build": "npm run clean && npm run babel && npm run webpack",
"clean": "rimraf dist swarm-api-*.tgz package",
"http-server": "http-server",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embark-framework/swarm-api.git"
},
"author": "",
"license": "MIT",
"keywords": [
"ethereum",
"dapps",
"swarm",
"blockchain",
"serverless"
],
"bugs": {
"url": "https://github.com/embark-framework/swarm-api/issues"
},
"homepage": "https://github.com/embark-framework/swarm-api#readme",
"dependencies": {
"@babel/runtime-corejs2": "7.0.0-rc.1",
"colors": "1.3.2",
"klaw": "^3.0.0",
"request": "^2.87.0",
"swarmhash": "^0.1.0",
"through2": "^2.0.3",
"xhr": "^2.5.0",
"yargs": "^12.0.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-rc.1",
"@babel/core": "7.0.0-rc.1",
"@babel/plugin-transform-runtime": "7.0.0-rc.1",
"@babel/preset-env": "7.0.0-rc.1",
"ajv": "6.5.2",
"cross-env": "5.2.0",
"eslint": "4.19.1",
"http-server": "0.11.1",
"rimraf": "2.6.2",
"webpack": "4.16.1",
"webpack-cli": "3.0.8"
},
"engines": {
"node": ">=8.11.3"
}
}