-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.7 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
{
"name": "@ivantha/graphjs",
"version": "1.0.0",
"description": "A simple grammar to convert raw data into visual graphs",
"main": "build/bundle.min.js",
"scripts": {
"clean": "rm -rf dist/* && rm -rf docs/*",
"test": "nyc --reporter=html --reporter=text mocha --require babel-core/register test/**/*.spec.js test/**/**/*.spec.js",
"build": "npm run clean && npm run babel && npm run webpack && npm run esdoc",
"dev": "npm run clean && npm run babel && npm run webpack",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"webpack": "webpack",
"babel": "babel --presets es2015 src --out-dir dist/src",
"esdoc": "rm -rf dist/docs && esdoc && rm -rf docs && cp -r ./dist/docs ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OshanIvantha/GraphJS.git"
},
"keywords": [
"charts"
],
"author": "O.I. Mudannayake <oshan.ivantha@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OshanIvantha/GraphJS/issues"
},
"homepage": "https://github.com/OshanIvantha/GraphJS#readme",
"dependencies": {
"c3": "^0.4.23",
"d3": "^5.4.0",
"enumify": "^1.0.4",
"es6-error": "^4.1.1",
"npm": "^6.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
}
}