-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "hosejs",
"version": "1.3.0",
"description": "javascript pipe, jq alternative",
"main": "index.js",
"bin": {
"j": "index.js",
"js": "index.js"
},
"scripts": {
"ts:check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deptno/hosejs.git"
},
"author": "Bonggyun Lee <[email protected]>",
"license": "MIT",
"dependencies": {
"get-stdin": "^6.0.0",
"meow": "^5.0.0",
"ramda": "^0.25.0"
},
"devDependencies": {
"@types/get-stdin": "^5.0.1",
"@types/jest": "^22.2.3",
"@types/meow": "^4.0.1",
"@types/node": "^10.1.0",
"@types/ramda": "^0.25.29",
"jest": "^22.4.4",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3"
},
"bugs": {
"url": "https://github.com/deptno/hosejs/issues"
},
"homepage": "https://github.com/deptno/hosejs#readme",
"keywords": [
"javascript",
"jq",
"terminal",
"eval",
"cli",
"pipe",
"js",
"hosejs",
"hose",
"j"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.(test|spec).(ts|tsx)"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/out/",
"/dist/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"text-summary"
]
}
}