forked from fnando/sparkline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "@fnando/sparkline",
"version": "0.3.10",
"files": [
"src/sparkline.js",
"dist/**/*",
"README.md"
],
"main": "dist/sparkline.js",
"module": "dist/sparkline.commonjs2.js",
"scripts": {
"test": "mocha --require @babel/register \"test/**/*_test.js\"",
"js:dist:commonjs2": "LIBRARY_TARGET=commonjs2 webpack",
"js:dist:browser": "LIBRARY_TARGET=var webpack",
"dist": "rm -rf dist/* && yarn test && yarn js:dist:browser && yarn js:dist:commonjs2"
},
"description": "Generate SVG sparklines with JavaScript without any external dependency.",
"license": "MIT",
"repository": "https://github.com/fnando/sparkline",
"private": false,
"devDependencies": {
"@babel/core": "7.0.x",
"@babel/plugin-proposal-function-bind": "7.0.x",
"@babel/plugin-proposal-object-rest-spread": "x",
"@babel/plugin-transform-runtime": "7.1.x",
"@babel/preset-env": "7.0.x",
"@babel/register": "7.0.x",
"@babel/runtime": "7.0.x",
"babel-loader": "8.0.x",
"jsdom": "11.7.x",
"mocha": "5.0.x",
"snap-shot": "2.17.x",
"uglifyjs-webpack-plugin": "2.0.x",
"webpack": "4.19.x",
"webpack-cli": "3.1.x"
}
}