This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "deta",
"version": "2.0.0",
"description": "Deta library for Javascript",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"format": "prettier --write .",
"lint": "eslint -c .eslintrc.js . --ext .ts",
"lint:fix": "eslint -c .eslintrc.js . --ext .ts --fix",
"test": "jest --config jest.config.json --runInBand",
"prepare": "husky install"
},
"main": "./dist/index.js",
"browser": "./dist/index.browser.js",
"files": [
"dist"
],
"types": "./dist/types/index.node.d.ts",
"author": "Deta",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/deta/deta-javascript.git"
},
"keywords": [
"Deta",
"SDK",
"for",
"Node.js"
],
"bugs": {
"url": "https://github.com/deta/deta-javascript/issues"
},
"homepage": "https://github.com/deta/deta-javascript#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^27.0.2",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"dotenv": "^9.0.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.2.4"
},
"dependencies": {
"node-fetch": "^2.6.7"
}
}