-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "@dataunion/authentication",
"version": "1.0.6",
"description": "Authenticate users so they can use the DataUnion SDK",
"main": "releaserc.js",
"dependencies": {
"web3": "^1.3.6",
"@semantic-release/git": "^9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^7.0.0",
"react-scripts": "^3.4.4"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build:babel && cp ./package.json ./dist/package.json && cp ./README.md ./dist/README.md",
"build-windows": "npm run build:babel-windows && copy .\\package.json .\\dist\\package.json && copy .\\README.md dist\\README.md",
"dist": "npm run build-windows && cd dist && npm update",
"build:babel": "NODE_ENV=production && babel ./src --out-dir=./dist",
"build:babel-windows": "set NODE_ENV=production&& babel .\\src --out-dir=.\\dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataUnion-app/authentication.git"
},
"keywords": [
"dataunion",
"web3",
"authentication",
"authenticate",
"sdk",
"data",
"economy",
"data"
],
"author": "DataUnion",
"license": "MIT",
"bugs": {
"url": "https://github.com/DataUnion-app/authentication/issues"
},
"homepage": "https://github.com/DataUnion-app/authentication#readme",
"directories": {
"doc": "docs"
},
"files": [
"dist"
]
}