-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "cobo-wallet-utils",
"version": "0.0.3",
"description": "cobo wallet shared utils function",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"react-native": "dist/index.esm.js",
"repository": "[email protected]:cobowallet/cobo-wallet-utils.git",
"author": "[email protected]",
"license": "MIT",
"private": true,
"dependencies": {
"browserify-zlib": "^0.2.0",
"crypto-js": "^3.1.9-1",
"ramda": "^0.25.0",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.0",
"babel-preset-env": "^1.7.0",
"regenerator-runtime": "^0.12.0",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"nyc": "^11.7.1",
"rollup": "^0.58.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^11.0.1"
},
"scripts": {
"lint": "standard",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "npm run lint && npm run build && jest",
"coverage": "nyc --reporter=html --reporter=text mocha",
"coveralls":
"npm run coverage && nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run build"
},
"files": ["dist"],
"standard": {
"globals": ["describe", "it", "expect"],
"ignore": ["dist/**"]
}
}