-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.27 KB
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
89
90
91
92
93
94
95
96
97
98
{
"name": "react-plottable",
"version": "0.0.2",
"description": "using plottable with react",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist/react-plottable.js test/react-plottable.spec.js",
"start": "webpack-dev-server",
"check-coverage": "nyc check-coverage --statements 50 --branches 50 --functions 50 --lines 50",
"cover": "nyc npm t",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"prebuild": "npm run clean && npm run lint",
"build": "npm-run-all --parallel build:main build:test",
"build:main": "webpack --config webpack.config.dev.babel.js",
"build:test": "webpack --config webpack.config.test.babel.js",
"build:umd": "webpack --output-filename react-plottable.umd.js --output-path dist --config webpack.config.prod.babel.js",
"build:umd.min": "webpack --output-filename react-plottable.umd.min.js --output-path dist --config webpack.config.prod.babel.js -p",
"build:dev": "npm run build:main && npm run build:test",
"babel:src": "babel src --out-dir lib && babel ReactPlottable --out-dir lib-react",
"clean": "rimraf lib lib-react",
"prepublish": "npm-run-all clean --parallel babel:src build:umd build:umd.min",
"pretest": "npm run build",
"test": "mocha-phantomjs ./test/tests.html",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Madadata/react-plottable.git"
},
"keywords": [
"react", "plottable", "es6"
],
"author": "Madadata",
"license": "MIT",
"bugs": {
"url": "https://github.com/Madadata/react-plottable/issues"
},
"homepage": "https://github.com/Madadata/react-plottable#readme",
"dependencies": {
"d3": "^3.5.17",
"lodash": "^4.13.1",
"plottable": "^2.2.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.9.0",
"commitizen": "2.8.2",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "1.1.6",
"d3": "^3.5.17",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-loader": "1.3.0",
"eslint-plugin-import": "1.9.2",
"eslint-plugin-jsx-a11y": "1.5.3",
"eslint-plugin-react": "5.2.2",
"expect": "^1.20.1",
"ghooks": "1.2.4",
"istanbul": "^0.4.4",
"jquery": "^3.0.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-html2js-preprocessor": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mocha-phantomjs": "^4.1.0",
"npm-run-all": "2.2.0",
"nyc": "6.6.1",
"phantomjs-prebuilt": "^2.1.7",
"plottable": "^2.2.0",
"sinon": "^1.17.4",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"yargs": "^4.7.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}