-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.29 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
{
"name": "eosjs-classic",
"version": "16.0.11",
"description": "General purpose library for the EOS blockchain.",
"main": "lib/index.js",
"files": [
"README.md",
"docs",
"lib"
],
"scripts": {
"test": "mocha --exit --use_strict src/*.test.js",
"test_lib": "mocha --exit --use_strict lib/*.test.js",
"coverage": "nyc --reporter=html npm test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "rm -fr lib && npm run build_lib && npm run build_browser",
"build_lib": "babel --copy-files src --out-dir lib",
"build_browser": "browserify -o lib/eos.js -s Eos lib/index.js",
"build_browser_test": "browserify -o dist/test.js lib/*.test.js",
"minimize": "uglifyjs lib/eos.js -o lib/eos.min.js --source-map --compress --mangle",
"docs": "jsdoc2md src/format.js > docs/format.md",
"srisum": "srisum lib/eos.*",
"prepublishOnly": "npm run build && npm run minimize && npm run docs && npm run srisum"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiushaoxi/eosjs-classic.git"
},
"keywords": [
"EOS",
"Blockchain",
"eosjs"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/qiushaoxi/eosjs-classic/issues"
},
"homepage": "https://github.com/qiushaoxi/eosjs-classic#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"browserify": "14.4.0",
"camel-case": "^3.0.0",
"coveralls": "^3.0.0",
"eosjs-keygen": "^1.3.2",
"jsdoc-to-markdown": "^3.0.4",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"srisum": "^2.0.0",
"uglify-js": "3.4.1"
},
"dependencies": {
"babel-runtime": "6.26.0",
"binaryen": "^37.0.0",
"create-hash": "^1.1.3",
"eosjs-api": "7.0.4",
"eosjs-ecc": "4.0.4",
"fcbuffer": "2.2.2"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}