This repository has been archived by the owner on Jan 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@foxy.io/node-api",
"version": "1.0.0",
"description": "FoxyCart hAPI client for Node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"docs": "jsdoc -r src -c jsdoc.json -d docs",
"test": "jest --config ./jest.config.json",
"test:watch": "jest --watch --config ./jest.config.json",
"lint": "tsc --noEmit && eslint \"{src,test}/**/*.ts\" --quiet --fix",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxy/foxy-node-api.git"
},
"keywords": [
"foxycart",
"foxy.io",
"foxy",
"serverless",
"nodejs",
"api"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/foxy/foxy-node-api/issues"
},
"homepage": "https://github.com/foxy/foxy-node-api#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/clone": "^0.1.30",
"@types/crypto-js": "^3.1.47",
"@types/jest": "^25.1.4",
"@types/jsdom": "^16.2.3",
"@types/mock-fs": "^4.10.0",
"@types/node-fetch": "^2.5.5",
"@types/traverse": "^0.6.32",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-jest": "^25.2.4",
"better-docs": "^2.3.1",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jsdoc": "^28.5.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.2.4",
"jsdoc": "^3.6.5",
"lint-staged": "^10.0.10",
"mock-fs": "^4.11.0",
"prettier": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.ts": "eslint --cache --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"clone": "^2.1.2",
"jsdom": "^16.2.2",
"logform": "^2.1.2",
"node-fetch": "^2.6.0",
"normalize-url": "^5.0.0",
"traverse": "^0.6.6",
"ts-mixer": "^5.1.0",
"winston": "^3.2.1"
}
}