forked from craftzing/node-akeneo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.1 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
{
"name": "@craftzing/akeneo-api",
"version": "1.0.9",
"description": "A Node Rest Client for the Akeneo PIM",
"author": "Jens Verbeken <[email protected]>",
"license": "MIT",
"types": "dist/cjs/index.d.ts",
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"main": "./dist/cjs/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup",
"build:docs": "typedoc --tsconfig tsconfig-base.json",
"build:types": "rimraf dist/typings && tsc -p tsconfig-cjs.json --declaration --noEmit false --emitDeclarationOnly true --allowJs false",
"watch": "tsc -w -p tsconfig.json && tsc -w -p tsconfig-cjs.json",
"prepare": "husky install",
"lint": "eslint src --max-warnings 0",
"test": "jest",
"prepublishOnly": "npm run build",
"publish": "npm publish --access public"
},
"dependencies": {
"axios": "^0.21.1",
"qs": "^6.9.6",
"ramda": "^0.27.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/qs": "^6.9.5",
"@types/ramda": "^0.27.36",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-html-reporters": "^2.1.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typedoc": "^0.20.19",
"typescript": "^4.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"reporters": [
"default",
"jest-html-reporters"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.(t|j)s"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}