-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "@interweb/node-api-client",
"version": "0.8.1",
"author": "Dan Lynch <pyramation@gmail.com>",
"description": "Node.js API Client",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/hyperweb-io/dev-utils",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperweb-io/dev-utils"
},
"bugs": {
"url": "https://github.com/hyperweb-io/dev-utils/issues"
},
"scripts": {
"copy": "makage copy ../../LICENSE README.md package.json dist --flat",
"clean": "makage clean dist",
"prepublishOnly": "npm run build",
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@interweb/http-errors": "workspace:*"
},
"keywords": [],
"devDependencies": {
"makage": "workspace:*"
}
}