-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 989 Bytes
/
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
{
"name": "node-sparkline",
"version": "1.3.0",
"description": "A lightweight and zero-dependencies pure Node.js sparkline generator",
"author": "Elysium Phase <[email protected]> (https://github.com/elysiumphase)",
"main": "src/index.js",
"private": false,
"preferGlobal": false,
"analyze": false,
"license": "MIT",
"engines": {
"node": ">=10.0.0",
"npm": ">=5.6.0"
},
"scripts": {
"lint": "eslint src/",
"test": "NODE_ENV=test mocha test/* --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/elysiumphase/node-sparkline.git"
},
"keywords": [
"node.js",
"node js",
"node",
"sparkline",
"trading",
"crypto",
"bitcoin",
"ethereum",
"cardano"
],
"files": [
"src"
],
"devDependencies": {
"chai": "4.3.7",
"eslint": "8.42.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"mocha": "10.2.0",
"svg-parser": "2.0.4"
}
}