-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "drawit",
"version": "1.0.0",
"description": "This is a user friendly js library that can be used to genarate configuration file for your favourite grahp libraries like c3, chart.js, poty.js.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/.bin/webpack",
"clean": "rm -rf dist/*",
"watch": "webpack --watch",
"webpack": "node_modules/.bin/webpack",
"start": "node_modules/.bin/webpack-dev-server --entry ./src/index.js --output-filrname ./dist/drawit.js --content-base ./samples/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codezilla2018/DrawIt.git"
},
"keywords": [
"c3",
"js",
"javascript",
"grahp"
],
"author": "Chamath Sandaru",
"license": "MIT",
"bugs": {
"url": "https://github.com/codezilla2018/DrawIt/issues"
},
"homepage": "https://github.com/codezilla2018/DrawIt#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"d3-fetch": "^1.1.0"
}
}