forked from vokkim/node-sparkline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "node-sparkline",
"version": "1.2.0",
"description": "A lightweight and zero-dependencies pure Node.js sparkline generator",
"author": "Adrien Valcke <adrienvalcke@icloud.com> (https://github.com/adrienv1520)",
"main": "lib/index.js",
"private": false,
"preferGlobal": false,
"analyze": false,
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"npm": ">=5.6.0"
},
"scripts": {
"test:lint": "eslint lib/",
"test:unit": "NODE_ENV=test mocha test/* --exit",
"test": "npm run test:lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/adrienv1520/node-sparkline.git"
},
"keywords": [
"node.js",
"node js",
"node",
"sparkline",
"trading",
"crypto",
"bitcoin",
"ethereum",
"cardano"
],
"files": [
"lib",
"doc/examples/bitcoin/sparkline.svg"
],
"dependencies": {},
"devDependencies": {
"chai": "~4.2.0",
"eslint": "~5.12.1",
"eslint-config-airbnb-base": "~13.1.0",
"eslint-plugin-import": "~2.15.0",
"mocha": "~7.1.1",
"svg-parser": "~2.0.4"
}
}