-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.36 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": "@jongleberry/pipe",
"version": "1.1.0",
"description": "Streaming server template. Define variables or sections as promises or streams or thunks that return either in your template, and they will be evaluated at render time.",
"scripts": {
"eslint": "eslint . --cache --cache-location node_modules/.cache/eslint --ignore-path .gitignore",
"test": "jest"
},
"main": "lib",
"files": [
"lib"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanong/pipe.git"
},
"author": "Jonathan Ong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanong/pipe/issues"
},
"homepage": "https://github.com/jonathanong/pipe#readme",
"devDependencies": {
"codecov": "^3.6.5",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0"
},
"jest": {
"cacheDirectory": "node_modules/.cache/jest",
"collectCoverageFrom": [
"lib/**/*.js"
],
"testEnvironment": "node"
},
"engines": {
"node": ">= 12"
},
"keywords": [
"stream",
"streams",
"streaming",
"template",
"render",
"async",
"promises"
]
}