-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "apibuilder-js",
"version": "0.0.17",
"description": "A reference implementation of API Builder for JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"clean": "rm -rf dist",
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts --quiet",
"prepublishOnly": "run-s clean build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apicollective/apibuilder-js.git"
},
"keywords": [
"node",
"apibuilder",
"reference"
],
"author": "Flow Commerce",
"license": "MIT",
"bugs": {
"url": "https://github.com/apicollective/apibuilder-js/issues"
},
"homepage": "https://github.com/apicollective/apibuilder-js#readme",
"dependencies": {
"invariant": "^2.2.4",
"lodash": "^4.17.15",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/faker": "^4.1.9",
"@types/invariant": "^2.2.31",
"@types/istanbul-lib-report": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.149",
"@types/node": "^18.11.9",
"@types/pluralize": "0.0.29",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"faker": "^4.1.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.7",
"typescript": "^4.9.3"
}
}