-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.1 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
{
"name": "@arcblock/ocap-js",
"description": "Javascript SDK for OCAP Service by ArcBlock",
"version": "0.34.0",
"author": "wangshijun <shijun@arcblock.io> (https://ocap.arcblock.io)",
"bugs": {
"url": "https://github.com/ArcBlock/ocap-javascript-sdk/issues",
"email": "shijun@arcblock.io"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"wangshijun <shijun@arcblock.io> (https://ocap.arcblock.io)"
],
"dependencies": {
"@arcblock/ocap-schema": "0.34.0",
"@arcblock/sdk-util": "0.34.0",
"babel-polyfill": "^6.26.0",
"blueimp-md5": "^2.19.0",
"phoenix": "^1.6.11",
"phoenix-channels": "^1.0.0",
"randombytes": "^2.1.0",
"wolfy87-eventemitter": "^5.2.9"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"eslint": "^5.16.0",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"graphql": "16.8.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rimraf": "^2.7.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"homepage": "https://github.com/ArcBlock/ocap-javascript-sdk",
"keywords": [
"ocap",
"blockchain",
"arcblock",
"sdk",
"nodejs"
],
"license": "Apache-2.0",
"main": "./lib/node.js",
"browser": "./dist/browser.js",
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/ArcBlock/ocap-javascript-sdk"
},
"scripts": {
"lint": "eslint src",
"clean": "rimraf lib && rimraf dist",
"build-browser": "BABEL_ENV=browser babel ./src --out-dir ./dist --source-maps --copy-files && webpack -p && rm ./dist/node.*",
"build-node": "babel ./src --out-dir ./lib --source-maps --copy-files && rm ./lib/browser.*",
"build": "yarn build-node && yarn build-browser",
"generate-docs": "node tools/generate-docs.js",
"precommit": "CI=1 yarn test",
"prepush": "CI=1 yarn test",
"test": "yarn lint && node tools/jest.js",
"coverage": "yarn test -- --coverage"
},
"gitHead": "37516a24b8dd8b39384f9b1b245eb537f05aa495"
}