-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "dailychart",
"version": "1.3.1",
"description": "Tiny SVG charting library to display stock sparklines",
"keywords": [
"chart",
"graph",
"sparkline",
"svg"
],
"homepage": "https://github.com/kbychkov/dailychart",
"repository": {
"type": "git",
"url": "https://github.com/kbychkov/dailychart.git"
},
"license": "MIT",
"author": "Konstantin Bychkov",
"main": "dist/dailychart.js",
"jsdelivr": "dist/dailychart.min.js",
"unpkg": "dist/dailychart.min.js",
"files": [
"/dist"
],
"scripts": {
"build": "gulp js",
"prepack": "npm run build",
"start": "gulp",
"test": "karma start"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-for-of": "^7.18.8",
"@babel/preset-env": "^7.19.4",
"chai": "^4.3.6",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-umd": "^2.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.34",
"mocha": "^10.1.0"
}
}