-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "webpipe",
"description": "Harness the power of WebPipes in browser and server environments.",
"version": "1.0.0",
"homepage": "https://github.com/webpipes/webpipe.js",
"author": "Matthew Hudson <[email protected]>",
"contributors": [
"Matthew Hudson <[email protected]>",
"Tom Robinson <[email protected]> (http://tlrobinson.net/)"
],
"repository": {
"type": "git",
"url": "git://github.com/webpipes/webpipe.js.git"
},
"bugs": "https://github.com/webpipes/webpipe.js/issues",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd",
"webpipe",
"webpipes"
],
"scripts": {
"build": "nwb build-web-module",
"clean": "nwb clean-module",
"prepublishOnly": "npm run build",
"test": "nwb test",
"test:coverage": "nwb test --coverage",
"test:watch": "nwb test --server"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"nwb": "^0.23.0",
"prettier": "1.18.2",
"prettier-config-standard": "^1.0.1"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}