forked from texmex44/react-numeral
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "react-numeral",
"version": "1.1.0",
"description": "React implementation of numeral.js",
"main": "./lib/Numeral.js",
"module": "./es/Numeral.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:webpack": "node webpack/build.js",
"buildOld": "npm run build:webpack",
"build": "rollup -c",
"clean": "rimraf lib coverage es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/texmex44/react-numeral.git"
},
"keywords": [
"react",
"numeraljs"
],
"author": "texmex44",
"license": "MIT",
"bugs": {
"url": "https://github.com/texmex44/react-numeral/issues"
},
"homepage": "https://github.com/texmex44/react-numeral#readme",
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"numeral": "^2.0.4",
"path": "^0.12.7",
"react": "^15.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup-plugin-babel": "^4.4.0"
},
"peerDependencies": {}
}