-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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": "@begin/api",
"version": "1.9.4",
"description": "Node.js client for api.begin.com",
"type": "module",
"module": "./src/index.mjs",
"main": "./src/index.cjs",
"exports": {
"import": "./src/index.mjs",
"default": "./src/index.cjs"
},
"files": [
"src/*"
],
"scripts": {
"lint": "eslint src --ext .js,.cjs,.mjs --fix",
"test": "npm run lint && tape test/*-test.*js | tap-arc",
"rc": "npm version prerelease --preid RC"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beginner-corp/begin-api.git"
},
"author": "Brian LeRoux <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/beginner-corp/begin-api/issues"
},
"homepage": "https://github.com/beginner-corp/begin-api#readme",
"dependencies": {
"@begin/chunker": "^1.1.2",
"tiny-json-http": "^7.5.1",
"zip-dir": "^2.0.0"
},
"devDependencies": {
"@architect/eslint-config": "^2.1.2",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.2"
},
"keywords": [
"node",
"fwa",
"begin"
],
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}