-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "search-json-stream",
"version": "0.0.1",
"main": "lib/index.js",
"author": "Nadeesha Cabral <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"test": "jest",
"start": "node lib/index.js",
"lint": "tslint --project ."
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.19.0",
"fluture": "^11.0.1",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"prettyjson": "^1.2.1",
"prompts": "^2.0.4",
"stream-json": "^1.2.1"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/invariant": "^2.2.29",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/prettyjson": "^0.0.28",
"@types/prompts": "^1.2.0",
"@types/stream-json": "^1.0.0",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000"
}
}