-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
44 lines (44 loc) · 896 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
{
"name": "ervy",
"version": "1.0.7",
"description": "Bring charts to terminal.",
"keywords": [
"cli",
"terminal",
"console",
"ascii",
"chart",
"data-visualization"
],
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"build": "browserify index.js -o site/js/ervy.js --standalone ervy"
},
"standard": {
"ignore": [
"site"
]
},
"author": "chunqiuyiyu <[email protected]> (https://www.chunqiuyiyu.com/)",
"license": "MIT",
"devDependencies": {
"browserify": "^16.5.0",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chunqiuyiyu/ervy.git"
},
"bugs": {
"url": "https://github.com/chunqiuyiyu/ervy/issues"
},
"homepage": "https://www.chunqiuyiyu.com/ervy/"
}