-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "@rustybrooks/api-framework",
"version": "1.0.11",
"description": "A simple api framework for expressjs",
"main": "./lib/index.js",
"files": ["lib/**/*"],
"scripts": {
"serve": "nodemon src/test.ts",
"build": "rm -rf lib && tsc -p .",
"packlist": "npx npm-packlist",
"test": "./node_modules/.bin/jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepare" : "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rustybrooks/api-framework.git"
},
"keywords": [],
"author": "Rusty Brooks <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rustybrooks/api-framework/issues"
},
"homepage": "https://github.com/rustybrooks/api-framework#readme",
"devDependencies": {
"@jest/types": "latest",
"@rustybrooks/eslint-config-prettier": "^1.0.13",
"@types/bcrypt": "latest",
"@types/cors": "latest",
"@types/express": "latest",
"@types/jest": "latest",
"@types/jsonwebtoken": "latest",
"@types/node": "latest",
"@types/supertest": "latest",
"jest": "latest",
"mockdate": "latest",
"nodemon": "latest",
"supertest": "latest",
"ts-jest": "latest",
"ts-node": "latest",
"typescript": "latest"
},
"dependencies": {
"tinspector": "latest",
"@newrelic/native-metrics": "latest",
"bcrypt": "latest",
"cors": "latest",
"dotenv": "latest",
"express": "latest",
"jsonwebtoken": "latest",
"newrelic": "latest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
}
}