-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "react-sparklines",
"version": "1.7.0",
"description": "Beautiful and expressive Sparklines component for React ",
"main": "build/index.js",
"directories": {
"src": "src/"
},
"scripts": {
"start": "cd demo && webpack-dev-server --progress",
"test": "mocha --compilers js:babel-core/register __tests__",
"test:watch": "mocha --compilers js:babel-core/register --watch __tests__",
"compile": "webpack",
"prepublish": "npm run compile",
"test:bootstrap": "node -r babel-core/register bootstrap-tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borisyankov/react-sparklines.git"
},
"keywords": [
"react",
"component",
"react-component",
"charts",
"sparklines",
"visualization",
"jsx"
],
"author": "Boris Yankov <borisyankov@gmail.com> (https://github.com/borisyankov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/borisyankov/react-sparklines/issues"
},
"homepage": "https://github.com/borisyankov/react-sparklines#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.8.0",
"babel-loader": "7.1.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-runtime": "^6.6.1",
"chai": "^4.1.0",
"enzyme": "^2.2.0",
"hiff": "^0.3.0",
"line-by-line": "^0.1.4",
"mocha": "^3.2.0",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-element-to-jsx-string": "11.0.1",
"replaceall": "^0.1.6",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.2.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}