-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "@nix2/service-plugin-nest",
"version": "1.0.0",
"description": "Create NEST services with this plugin.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/nix2io/service-plugin-nest.git",
"author": "Max Koon <[email protected]>",
"license": "CC-BY-1.0",
"private": false,
"prettier": "@nix2/prettier-config",
"scripts": {
"format": "prettier --write ./src/**",
"test-format": "prettier --check ./src/**",
"test": "mocha -r ts-node/register tests/**",
"lint": "eslint src/**",
"mk-docs": "typedoc --name \"Nest.js Plugin Documentation\" && touch ./docs/.nojekyll",
"prepublish": "tsc"
},
"devDependencies": {
"@nix2/prettier-config": "^1.0.2",
"@types/mocha": "8.0.4",
"@types/node": "14.14.9",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.8.1",
"eslint": "7.14.0",
"eslint-plugin-jsdoc": "30.7.8",
"mocha": "8.2.1",
"prettier": "2.1.2",
"ts-node": "9.0.0",
"typedoc": "0.19.2",
"typescript": "4.0.5"
},
"files": [
"dist"
],
"dependencies": {
"@nix2/service-plugin-typescript": "^1.0.7"
}
}