-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "@ardrive/ardrive-promise-cache",
"version": "1.4.0",
"description": "A promise cache utility.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ardriveapp/promise-cache"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project ./tsconfig.prod.json",
"test": "tsc -p ./tsconfig.json --noEmit && nyc mocha",
"prepare": "husky install",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write ."
},
"author": {
"name": "Permanent Data Solutions Inc",
"email": "[email protected]",
"website": "https://ardrive.io"
},
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^3.0.1",
"semantic-release": "^21.0.7",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@alexsasharegan/simple-cache": "^3.3.3"
}
}