-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"name": "proxy-indexer",
"version": "0.3.2",
"description": "Create self-updating, easy to use in-memory indexes.",
"repository": {
"type": "git",
"url": "https://github.com/Antman261/proxy-indexer"
},
"main": "lib/index",
"types": "lib/index",
"files": [
"lib",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "npx mocha",
"watch": "npx mocha -w",
"build": "npx tsc -p .",
"build-docs": "npx typedoc --out docs src/index.ts",
"commit": "npx cz",
"release": "npm run build && npm run build-docs && git add . && standard-version",
"prepublishOnly": "npm run build"
},
"prettier": {
"singleQuote": true
},
"mocha": {
"extension": [
"ts"
],
"watch-files": [
"src/**/*.ts",
"test/**/*.ts"
],
"spec": [
"test/**/*.ts"
],
"require": "ts-node/register"
},
"author": "Anthony Manning-Franklin <anthony.manning.franklin@gmail.com> (https://antman-does-software.com)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}