This repository has been archived by the owner on Aug 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.18 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
{
"name": "@medibloc/panacea-js",
"version": "1.0.2",
"description": "JavaScript library for MediBloc",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"babel": "babel src -d lib --copy-files",
"browserify": "browserify ./lib/index.js -o ./dist/panaceajs.js -s panaceajs",
"build": "npm run clean && npm run babel && npm run browserify && npm run uglify",
"clean": "npm run clean-dist && npm run clean-lib",
"clean-dist": "rm -rf dist",
"clean-lib": "rm -rf lib",
"lint": "eslint .",
"test": "mocha --recursive --require babel-core/register --reporter spec",
"uglify": "uglifyjs -nm -o ./dist/panaceajs.min.js ./dist/panaceajs.js"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/medibloc/panacea-js.git"
},
"keywords": [
"medibloc",
"javascript",
"library",
"panacea"
],
"author": "MediBloc <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/medibloc/panacea-js/issues"
},
"homepage": "https://github.com/medibloc/panacea-js#readme",
"dependencies": {
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"bignumber.js": "^7.0.1",
"bops": "^1.0.0",
"browserify": "^16.2.3",
"js-sha3": "^0.7.0",
"jsonfile": "^4.0.0",
"protobufjs": "~6.8.6",
"scrypt.js": "^0.2.0",
"secp256k1": "^3.5.0",
"underscore": "^1.9.1",
"unorm": "^1.4.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^6.1.4",
"pre-commit": "^1.2.2",
"proxyquire": "^2.0.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.3.0",
"uglify-es": "^3.3.9"
}
}