forked from fusioncharts/fusioncharts-smartlabel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.88 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
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": "fusioncharts-smartlabel",
"version": "3.0.1",
"description": "SmartLabel component to measure and restrict text in svg / canvas",
"main": "dist/fusioncharts-smartlabel.min.js",
"module": "es/SmartlabelManager.js",
"author": "FusionCharts, Inc. <[email protected]>",
"contributors": [
"Akash Goswami",
"Priyanjit Dey",
"Rohit Kumar",
"Shamasis Bhattacharya",
"Subhash Haldar"
],
"license": "MIT",
"homepage": "https://github.com/fusioncharts/fusioncharts-smartlabel",
"repository": {
"type": "git",
"url": "https://github.com/fusioncharts/fusioncharts-smartlabel.git"
},
"bugs": {
"url": "https://github.com/fusioncharts/fusioncharts-smartlabel/issues"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.5",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"d3": "^4.4.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"gulp": "^3.9.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"mocha": "^3.2.0",
"react": "^0.14.0",
"react-component-gulp-tasks": "^0.7.6",
"react-dom": "^0.14.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "rm -rf dist/ && npx webpack --dev && npx webpack --prod",
"minify": "rm -rf es/ && npx babel src -d es --minified --no-comments",
"lint": "eslint ./; true",
"start": "gulp dev",
"test": "script/test",
"coveralls": "cat coverage/report-lcov/lcov.info | node node_modules/.bin/coveralls"
},
"keywords": [
"smartlabel",
"fusioncharts",
"text",
"svg",
"canvas"
]
}