Browse Source

Add `serve` script (#2045)

pull/1629/merge
Yoshiya Hinosawa 8 years ago committed by Ændrew Rininsland
parent
commit
9749659eb2
  1. 3
      README.md
  2. 4
      package.json

3
README.md

@ -15,8 +15,7 @@ Additional samples can be found in this repository:
You can run these samples as: You can run these samples as:
``` ```
$ cd c3/htdocs $ npm run serve
$ python -m SimpleHTTPServer 8080
``` ```
## Google Group ## Google Group

4
package.json

@ -4,6 +4,7 @@
"description": "D3-based reusable chart library", "description": "D3-based reusable chart library",
"main": "c3.js", "main": "c3.js",
"scripts": { "scripts": {
"serve": "static -p 8080 htdocs/",
"prepublish": "npm run dist", "prepublish": "npm run dist",
"lint": "grunt lint", "lint": "grunt lint",
"build": "rollup -f umd --name c3 src/index.js > c3.js", "build": "rollup -f umd --name c3 src/index.js > c3.js",
@ -32,12 +33,10 @@
"codecov.io": "^0.1.6", "codecov.io": "^0.1.6",
"grunt": "^0.4.5", "grunt": "^0.4.5",
"grunt-cli": "^1.2.0", "grunt-cli": "^1.2.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-cssmin": "^0.10.0", "grunt-contrib-cssmin": "^0.10.0",
"grunt-contrib-jshint": "^1.0.0", "grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "~0.4.0", "grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "^0.6.1", "grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.12.1",
"grunt-sass": "^2.0.0", "grunt-sass": "^2.0.0",
"jasmine-core": "^2.3.4", "jasmine-core": "^2.3.4",
"jshint-stylish": "^2.1.0", "jshint-stylish": "^2.1.0",
@ -47,6 +46,7 @@
"karma-phantomjs-launcher": "^0.2.1", "karma-phantomjs-launcher": "^0.2.1",
"karma-spec-reporter": "0.0.20", "karma-spec-reporter": "0.0.20",
"load-grunt-tasks": "~0.2.0", "load-grunt-tasks": "~0.2.0",
"node-static": "^0.7.9",
"phantomjs": "^1.9.18", "phantomjs": "^1.9.18",
"rollup": "^0.41.6" "rollup": "^0.41.6"
} }

Loading…
Cancel
Save