-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"keywords": [
"symverse",
"symjs",
"blockchain"
],
"license": "MPL-2.0",
"main": "index.js",
"name": "symjs",
"scripts": {
"lint": "eslint ./src/**/*.js",
"build": "WEBPACK_ENV=build webpack --production",
"build_dev": "WEBPACK_ENV=build webpack --development",
"test": "mocha $(find ./tests -name '*.spec.js') --require @babel/register --recursive -w "
},
"version": "1.0.0",
"author": {
"name": "gocheat",
"email": "itsinil@gmail.com"
},
"description": "symverse network javascript api library",
"dependencies": {
"@types/bn.js": "^4.11.4",
"assert": "^1.4.1",
"babel-polyfill": "^6.26.0",
"bignumber.js": "4.0.0",
"bn.js": "^4.11.8",
"ethjs-provider-http": "^0.1.6",
"number-to-bn": "^1.7.0",
"rlp": "^2.2.3",
"utf8": "^3.0.0",
"sha3": "^2.0.1",
"secp256k1": "^3.6.2",
"promise-to-callback": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.7.1",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/register": "^7.7.0",
"@babel/runtime": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-register": "^6.26.0",
"definitelytyped-header-parser": "^1.0.1",
"dtslint": "0.4.2",
"eslint": "^5.16.0",
"node-loader": "^0.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"should": "^13.2.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
}
}