-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "@coingecko/cryptoformat",
"version": "0.8.2",
"description": "Javascript library to format and display cryptocurrencies and fiat",
"main": "lib/cryptoformat.cjs.js",
"module": "lib/cryptoformat.esm.js",
"browser": "lib/cryptoformat.umd.js",
"scripts": {
"test": "jest",
"submit": "npm publish --access public",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coingecko/cryptoformat.git"
},
"author": "CoinGecko",
"license": "MIT",
"bugs": {
"url": "https://github.com/coingecko/cryptoformat/issues"
},
"homepage": "https://github.com/coingecko/cryptoformat#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.22.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"types": "lib/index.d.ts",
"dependencies": {},
"files": [
"lib"
],
"engines": {
"node": ">=10"
}
}