-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "react-function-plot",
"version": "0.0.14",
"description": "react component to plot a function as an svg path",
"author": "Angus Croll",
"main": "dist/plot.js",
"scripts": {
"compile": "babel --stage 0 --optional runtime src --out-dir dist",
"prepublish": "npm run compile",
"test": "karma start --single-run",
"testc": "karma start --auto-watch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angus-c/react-function-plot.git"
},
"keywords": [
"react",
"d3",
"svg",
"line",
"function"
],
"devDependencies": {
"babel": "^5.1.13",
"babel-core": "^5.1.11",
"babel-loader": "^5.0.0",
"babel-preset-es2015": "^6.0.15",
"css-loader": "^0.20.1",
"eslint": "^1.7.2",
"eslint-plugin-react": "^3.6.2",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"style-loader": "^0.13.0"
},
"dependencies": {
"babel-eslint": "^4.0.5",
"babel-runtime": "^5.5.8",
"classnames": "^2.2.0",
"d3": "^3.5.6",
"function-to-string": "^0.2.0",
"react": "^0.14.1",
"react-dom": "^0.14.1"
}
}