-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.75 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
72
73
74
75
76
77
78
79
{
"name": "react-formatted-amount",
"version": "1.4.1",
"description": "react-formatted-amount",
"main": "lib/I18nReactFormattedAmount.js",
"author": "Julien TASSIN",
"homepage": "https://github.com/jtassin/react-formatted-amount",
"repository": {
"type": "git",
"url": "https://github.com/jtassin/react-formatted-amount.git"
},
"bugs": {
"url": "https://github.com/jtassin/react-formatted-amount/issues"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.16.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"component-playground": "^3.0.0",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.2.0",
"nyc": "^8.4.0",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.19.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
},
"peerDependencies": {
"prop-types": "^15.3.0 || ^16.0.0",
"react": "^15.3.0 || ^16.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"coverage": "nyc npm test && nyc report --require babel-core/register --require babel-polyfill mocha \"src/**/*.test.js\" --reporter=text-lcov > coverage.lcov && codecov",
"build": "webpack -p --config webpack.dist.config.js && babel src --out-dir lib --ignore spec.js,test.js",
"build:ghpages": "webpack -p --config webpack.example.config.js --release",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"bump:patch": "npm test && npm version patch && npm run publish:site && npm run publish:demo",
"bump:minor": "npm test && npm version minor && npm run publish:site && npm run publish:demo",
"bump:major": "npm test && npm version major && npm run publish:site && npm run publish:demo",
"publish:site": "npm run build && npm publish && git push && git push --tags",
"publish:demo": "npm run build:ghpages && gh-pages -d dist/examples",
"start": "node server.js",
"test": "mocha \"src/**/*.test.js\" --compilers js:babel-register"
},
"keywords": [
"react",
"react-component",
"formatted",
"amount",
"currency"
]
}