-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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": "@wildlink/backend-js-client",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"prepare": "yarn build",
"prepublishOnly": "yarn run lint && yarn test",
"preversion": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wildlink/backend-js-client.git"
},
"author": "Aleksei Kaida <alex.jellydev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wildlink/backend-js-client/issues"
},
"homepage": "https://github.com/wildlink/backend-js-client#readme",
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1"
}
}