-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "---name---",
"version": "1.0.0",
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"typings": "dist/types",
"license": "MIT",
"description": "---description---",
"repository": "---repo---",
"author": "Everett Morgan",
"scripts": {
"tsc": "./node_modules/typescript/bin/tsc",
"test": "yarn linter && yarn tests",
"linter": "yarn run eslint --ext .ts src/",
"tests": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node ./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text ./node_modules/mocha/bin/mocha -r ./node_modules/ts-node/register/index.js 'tests/**/*.ts'",
"test-publish": "npm publish --dry-run",
"publish": "npm publish"
},
"dependencies": {
"dotenv": "^10.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.11.10",
"@types/redis": "^2.8.32",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}