-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.53 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
{
"name": "ccunits",
"version": "1.0.6",
"description": "",
"main": "dist/ccunits.js",
"scripts": {
"build": "rollup --config -c ./build/rollup.config.js --format umd --name 'ccunits'",
"test": "NODE_ENV=testing jest"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"dist",
"src"
],
"testRegex": "/tests/*.*.js$",
"rootDir": "."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dractw/ccunits.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"cryptocurrency",
"crypto",
"bitcoin",
"ethereum",
"satoshi",
"wei",
"ripple",
"xrp",
"btc",
"eth",
"convert",
"format",
"decimal",
"fractions",
"unit",
"converter",
"formatter"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/dractw/ccunits/issues"
},
"homepage": "https://github.com/dractw/ccunits#readme",
"dependencies": {
"big.js": "^5.2.2"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.5.5",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3"
}
}