-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.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
{
"name": "mobbex",
"version": "2.3.5",
"description": "Mobbex Integration Package",
"main": "lib/mobbex.js",
"types": "lib/mobbex.d.ts",
"files": [
"lib/**/**"
],
"scripts": {
"build": "npm test && npm run lint && tsc -p tsconfig.json",
"test": "nyc mocha --require ts-node/register --watch-extensions ts,tsx 'test/**/*.{ts,tsx}'",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobbexco/nodejs.git"
},
"keywords": [
"mobbex"
],
"author": "Ezekiel Grosfeld",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobbexco/nodejs/issues"
},
"homepage": "https://github.com/mobbexco/nodejs#readme",
"dependencies": {
"axios": "^0.21.0",
"fastest-validator": "^1.9.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}