forked from 3box/3box-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.92 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
80
81
82
{
"name": "3box",
"version": "1.7.2",
"description": "Interact with user data",
"main": "lib/3box.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "rm -rf ./tmp ; jest --detectOpenHandles --coverage --runInBand --testURL=\"http://localhost\"",
"build:es5": "rm -rf ./lib; ./node_modules/.bin/babel src --out-dir lib --ignore=src/__tests__/,src/__mocks__/",
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build:dist:dev": "./node_modules/.bin/webpack --config webpack.dev.config.js --mode=development",
"build:dist:prod": "./node_modules/.bin/webpack --config webpack.config.js --mode=production --output-filename 3box.min.js",
"build:dist:api": "./node_modules/.bin/webpack --config webpack.api.config.js --mode=production",
"build": "npm run build:es5; npm run build:dist; npm run build:dist:prod; npm run build:dist:api",
"prepublishOnly": "npm run build; npm run generate-readme",
"example-server:start": "node example/server.js",
"example:start": "npm run build:dist; npm run example-server:start",
"generate-readme": "cp readme-template.md README.md; ./node_modules/.bin/jsdoc2md -g none -d 3 'src/**/*.js' >> README.md"
},
"browser": {
"fs": false,
"child_process": false
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
"lib",
"<rootDir>/src/__tests__/testUtils.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/3box-js.git"
},
"author": "3box <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/3box/3box-js/issues"
},
"homepage": "https://github.com/3box/3box-js#readme",
"dependencies": {
"@babel/runtime": "^7.1.2",
"did-jwt": "^0.1.1",
"ethers": "^4.0.20",
"graphql-request": "^1.8.2",
"https-did-resolver": "^0.1.0",
"ipfs": "^0.33.1",
"ipfs-mini": "^1.1.5",
"ipfs-postmsg-proxy": "^3.1.1",
"js-sha256": "^0.9.0",
"muport-did-resolver": "^0.3.0-alpha.2",
"node-fetch": "^2.3.0",
"orbit-db": "git://github.com/orbitdb/orbit-db.git#dddb271",
"orbit-db-cache-postmsg-proxy": "^0.1.1",
"store": "^2.0.12",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0"
},
"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",
"express": "^4.16.4",
"ganache-cli": "^6.1.0",
"ipfsd-ctl": "^0.40.1",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^4.0.1",
"standard": "^12.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}