-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.08 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
47
48
49
50
51
52
53
54
55
{
"name": "carvis",
"version": "1.0.17",
"description": "a csv making machine",
"main": "index.js",
"scripts": {
"test": "jest",
"testWatch": "jest --watchAll --verbose",
"prune": "rm -rf ./carvis-data/*",
"carvis": "node ../index.js",
"post": "npm publish"
},
"bin": {
"carvis": "./index.js"
},
"keywords": [
"carvis",
"mixpanel",
"fake data",
"dummy data",
"csv",
"json",
"CLI"
],
"author": "AK",
"license": "ISC",
"dependencies": {
"ak-tools": "^1.0.218",
"chance": "^1.1.7",
"command-line-args": "^5.1.1",
"dayjs": "^1.10.4",
"papaparse": "^5.3.1"
},
"jshintConfig": {
"esversion": 9,
"devel": true,
"browser": true,
"lastsemic": true,
"validthis": true,
"strict": false,
"white": false,
"unused": false,
"loopfunc": true,
"globals": {}
},
"repository": {
"type": "git",
"url": "https://github.com/ak--47/carvis.git"
},
"homepage": "https://github.com/ak--47/carvis",
"devDependencies": {
"eslint": "^7.25.0",
"jest": "^29.2.0"
}
}