This repository was archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.2 KB
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": "embarkjs",
"version": "0.5.0",
"description": "JavaScript library for easily interacting with web3 technologies",
"main": "dist/node/index.js",
"browser": {
"./dist/node/index.js": "./dist/browser/index.js"
},
"browserslist": [
"last 1 version",
"not dead",
"> 0.2%"
],
"files": [
"dist",
"embark.min.js",
"src"
],
"scripts": {
"babel": "npm run babel:browser && npm run babel:node && npm run babel:node:async",
"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",
"babel:node:async": "cross-env BABEL_ENV=node:async babel --out-dir dist src/node",
"babel:watch": "npm-run-all -p babel:watch:*",
"babel:watch:browser": "npm run babel:browser -- --verbose --watch",
"babel:watch:node": "npm run babel:node -- --verbose --watch",
"build": "npm run clean && npm run babel && npm run webpack",
"clean": "rimraf dist embark.min.js embarkjs-*.tgz package",
"http-server": "http-server",
"prepare": "npm run build",
"test": "mocha --exit",
"webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embark-framework/EmbarkJS.git"
},
"author": "Iuri Matias <iuri.matias@gmail.com>",
"license": "MIT",
"keywords": [
"ethereum",
"dapps",
"ipfs",
"solidity",
"solc",
"blockchain",
"serverless"
],
"bugs": {
"url": "https://github.com/embark-framework/EmbarkJS/issues"
},
"homepage": "https://github.com/embark-framework/EmbarkJS#readme",
"dependencies": {
"@babel/runtime-corejs2": "7.0.0-rc.1",
"async": "2.6.1",
"async-es": "2.6.1"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.2.3",
"@babel/register": "7.0.0",
"ajv": "6.5.2",
"chai": "4.2.0",
"cross-env": "5.2.0",
"http-server": "0.11.1",
"mocha": "5.2.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.2",
"web3": "1.0.0-beta.37",
"webpack": "4.16.1",
"webpack-cli": "3.0.8"
},
"engines": {
"node": ">=8.11.3",
"npm": ">=6.4.1"
}
}