This repository is currently being migrated. It's locked while the migration is in progress.
forked from motiz88/react-dygraphs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
{
"name": "@zenedge/react-dygraphs",
"version": "0.0.3",
"description": "",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"main": "dist/cjs/index.js",
"scripts": {
"start": "cross-env NODE_ENV=test BABEL_ENV=test webpack-dev-server",
"build": "npm run build:es && npm run build:cjs",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel -D src -d dist/es",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel -D src -d dist/cjs",
"test": "cross-env NODE_ENV=test BABEL_ENV=test karma start karma-ci.conf.js --single-run",
"prepublish": "npm run build",
"eslint": "eslint src/**/*.js src/**/*.jsx demo/**/*.js demo/**/*.jsx test/**/*.js test/**/*.jsx",
"eclint": "eclint check *.js *.json *.sublime-project *.md *.yml *.*rc *.*ignore src/**/*.js src/**/*.jsx demo/**/*.js demo/**/*.jsx test/**/*.js test/**/*.jsx",
"ecfix": "eclint fix *.js *.json *.sublime-project *.md *.yml *.*rc *.*ignore src/**/*.js src/**/*.jsx demo/**/*.js demo/**/*.jsx test/**/*.js test/**/*.jsx",
"check-style": "npm run eclint && npm run eslint"
},
"author": "Moti Zilberman <[email protected]>",
"contributors": [
{
"name": "Aurimas Kancavicius",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"eclint": "^2.4.3",
"editorconfig-tools": "^0.1.1",
"eslint": "^4.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.3.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"mocha": "^5.0.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0",
"react-test-renderer": "^16.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.14.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/motiz88/react-dygraphs.git"
},
"bugs": {
"url": "https://github.com/motiz88/react-dygraphs/issues",
"email": "[email protected]"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "15.x || 16.x",
"react-dom": "15.x || 16.x"
},
"dependencies": {
"downsample-lttb": "0.0.1",
"dygraphs": "^2.1.0",
"uuid": "^3.3.2"
}
}