-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.85 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
{
"name": "react-pretty-numbers",
"version": "3.0.0",
"description": "A react component to display numeric data, in it's various formats. These may include currencies, percentages and large numbers.",
"main": "lib/component/numeric_label.js",
"scripts": {
"prepublish": "babel src --out-dir lib && npm run demo",
"start": "node server.js",
"test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"demo": "browserify lib/index.js > bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pvoznyuk/react-pretty-numbers.git"
},
"keywords": [
"react-component"
],
"author": "Daffodil, Pavlo Vozniuk <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pvoznyuk/react-pretty-numbers/issues"
},
"homepage": "https://pvoznyuk.github.io/react-pretty-numbers/",
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-istanbul": "^0.7.0",
"babel-loader": "^6.2.4",
"babel-preset-env": "*",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"browser-sync": "^2.23.6",
"browserify": "^14.5.0",
"eslint-plugin-react": "^4.2.3",
"expect": "^1.16.0",
"expect-jsx": "^2.4.0",
"intl": "^1.1.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"react": ">=15",
"react-addons-test-utils": "^15.6.2",
"react-bootstrap": "^0.28.5",
"react-dom": ">=15",
"react-highlight.js": "^1.0.7",
"react-hot-loader": "^3.1.3",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.21.0"
},
"directories": {
"test": "test"
}
}