Quite good looking graph derived from d3.js http://c3js.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.5 KiB

11 years ago
{
"name": "c3",
"version": "0.4.12",
11 years ago
"description": "D3-based reusable chart library",
"main": "c3.js",
"scripts": {
"serve": "static -p 8080 htdocs/",
"prepublish": "npm run dist",
"lint": "grunt lint",
"build": "npm run build:js && npm run build:css",
"build:js": "rollup -f umd --name c3 --globals d3:d3 src/index.js > c3.js",
"build:css": "node-sass src/scss/main.scss > c3.css",
"minify": "grunt minify",
"test": "npm run build && npm run lint && karma start karma.conf.js",
"dist": "npm run build && npm run minify",
"codecov": "cat coverage/*/lcov.info | codecov"
11 years ago
},
"repository": {
"type": "git",
"url": "git://github.com/c3js/c3.git"
11 years ago
},
"keywords": [
"d3",
"chart",
"graph"
],
"author": "Masayuki Tanaka",
"license": "MIT",
"gitHead": "84e03109d9a590f9c8ef687c03d751f666080c6f",
"readmeFilename": "README.md",
"dependencies": {
"d3": "~3.5.0"
},
11 years ago
"devDependencies": {
"codecov.io": "^0.1.6",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-cssmin": "^0.10.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "~0.4.0",
"jasmine-core": "^2.3.4",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.10",
"karma-coverage": "^0.5.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-spec-reporter": "0.0.20",
"load-grunt-tasks": "~0.2.0",
"node-sass": "^4.5.3",
"node-static": "^0.7.9",
"phantomjs": "^1.9.18",
"rollup": "^0.41.6"
11 years ago
}
}