-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.22 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": "@sivrad/matrix",
"version": "1.0.39",
"description": "An opinionated schema-based database interface.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/sivrad/package-template.git",
"author": "Max Koon <maxk@nix2.io>",
"license": "MIT",
"private": false,
"prettier": "@nix2/prettier-config",
"scripts": {
"generate-types": "ts-node ./scripts/generateTypes.ts",
"lint-types": "ts-node ./scripts/lint/run.ts",
"build-types": "ts-node ./scripts/build/run.ts",
"mk-type": "ts-node ./scripts/mk-type/run.ts",
"format": "prettier --write ./src/**",
"test-format": "prettier --check ./src/**",
"test": "nyc mocha -r ts-node/register tests/**",
"posttest": "nyc report --reporter=json",
"lint": "eslint src/core/**",
"mk-docs": "typedoc --name \"Documentation\" && touch ./docs/.nojekyll",
"build": "yarn build-types & yarn tsc",
"patch": "yarn version --new-version patch",
"publish-pkg": "yarn build & yarn publish --access=public",
"sand": "ts-node sandbox.ts",
"prepare": "husky install",
"cm": "cz"
},
"devDependencies": {
"@nix2/prettier-config": "^1.0.2",
"@types/ejs": "^3.0.6",
"@types/mocha": "8.2.3",
"@types/node": "16.3.3",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.28.4",
"ajv": "^8.1.0",
"axios": "^0.21.1",
"codecov": "^3.8.3",
"colors": "^1.4.0",
"cz-conventional-changelog": "3.3.0",
"ejs": "^3.1.6",
"eslint": "7.31.0",
"eslint-plugin-jsdoc": "35.5.0",
"husky": "^7.0.1",
"json-schema-to-typescript": "^10.1.4",
"mocha": "9.0.2",
"mocha-steps": "^1.3.0",
"nyc": "^15.1.0",
"ora": "^5.4.0",
"prettier": "2.1.2",
"ts-node": "10.1.0",
"typedoc": "0.21.4",
"typescript": "4.0.5"
},
"files": [
"dist"
],
"dependencies": {
"faunadb": "^4.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}