This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.28 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
{
"name": "3id-connect",
"version": "0.1.0",
"description": "Account management for 3Box",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "jest --detectOpenHandles --coverage",
"build:es5": "rm -rf ./lib; ./node_modules/.bin/babel src --out-dir lib",
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build:dist:watch": "./node_modules/.bin/webpack --config webpack.config.js --mode=development --watch",
"build:dist:prod": "./node_modules/.bin/webpack --config webpack.config.js --mode=production --output-filename index.js",
"build": "npm run build:dist:prod; npm run build:es5;",
"prepublishOnly": "npm run build:es5",
"prepare": "npm run build:es5",
"server:start": "http-server -c-1 -p 30001 public",
"start": "npm run build:dist:watch & npm run server:start"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
"lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/3id-connect.git"
},
"author": "3box <team@3box.io>",
"license": "(Apache-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/3box/3id-connect/issues"
},
"homepage": "https://github.com/3box/3id-connect#readme",
"dependencies": {
"3id-blockchain-utils": "^0.4.0",
"@babel/runtime": "^7.1.2",
"identity-wallet": "^1.3.0",
"postmsg-rpc": "^2.4.0",
"store": "^2.0.12",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"css-to-string-loader": "^0.1.3",
"http-server": "^0.11.1",
"jest": "^26.3.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.2",
"url-loader": "^4.0.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}