-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 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
{
"name": "blockdemy-certs",
"version": "0.1.5",
"description": "A client to communicate with the Blockdemy Certs application API and handle file certifications",
"main": "./dist/index.js",
"homepage": "https://certs.blockdemy.com",
"scripts": {
"build:commonjs": "babel src --out-dir dist",
"build:umd": "cross-env FILE_NAME=blockdemy-certs webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"clean": "rimraf lib dist",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"lint": "eslint src --ext .js,.jsx",
"start": "nodemon src/index.js --exec babel-watch"
},
"keywords": [
"ethereum",
"web3",
"client",
"api",
"blockchain"
],
"author": "Ernesto García <ernestognw@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"form-data": "^2.5.1"
},
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"babel-eslint": "^10.0.3",
"cross-env": "^6.0.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"nodemon": "^1.19.2",
"rimraf": "^3.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}