-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "turbo-json.js",
"description": "Combine with streams multiple json files into one json array. Read and Write is streamed.",
"version": "0.2.2",
"main": "src/index.js",
"scripts": {
"start": "src/cli.js",
"test": "jest",
"test:watch": "npx jest --watch",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js . --fix"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/bidoubiwa/turbo-json.js/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/bidoubiwa/turbo-json.js.git"
},
"author": {
"name": "Charlotte Vermandel",
"email": "[email protected]"
},
"bin": {
"turbo-json.js": "./src/cli.js"
},
"files": [
"src/"
],
"engines": {
"node": ">=14 <15"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"stream-json": "^1.7.4"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.3.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
}
}