-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.16 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
{
"name": "chartjs-chart-graph-dot-parser",
"description": "Graphviz DOT parser utility for chartjs-chart-graph",
"version": "1.0.0",
"author": {
"name": "Samuel Gratzl",
"email": "samu@sgratzl.com",
"url": "https://wwww.sgratzl.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sgratzl/chartjs-chart-graph-dot-parser.git"
},
"main": "build/Chart.Graphs.DotParser.js",
"unpkg": "build/Chart.Graphs.DotParser.min.js",
"module": "build/Chart.Graphs.DotParser.esm.js",
"sideEffects": false,
"files": [
"build",
"src/**/*.js"
],
"dependencies": {
"@babel/runtime": "^7.9.6",
"dotparser": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@yarnpkg/pnpify": "^2.0.0-rc.22",
"babel-jest": "^26.0.1",
"chart.js": "^3.0.0-alpha",
"chartjs-chart-graph": "^3.0.0-alpha.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"release-it": "^13.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-pnp-resolve": "^2.0.0",
"uglify-es": "^3.3.9"
},
"scripts": {
"clean": "rimraf build *.tgz",
"watch": "rollup -c -w",
"lint": "eslint src",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"build:dev": "rollup -c",
"build:prod": "npm run build:dev && uglifyjs build/Chart.Graphs.DotParser.js -c -m -o build/Chart.Graphs.DotParser.min.js",
"prebuild": "npm run clean && npm test",
"build": "npm run build:prod",
"format": "prettier --write samples src package.json *.js README.md",
"preversion": "npm run test",
"prepare": "npm run build:dev",
"prepublishOnly": "npm run build:prod",
"release": "release-it --disable-metrics --npm.skipChecks",
"release:pre": "release-it --disable-metrics --npm.skipChecks --preRelease=alpha --npm.tag=next"
}
}