-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.84 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
68
69
{
"name": "@propelauth/express",
"repository": {
"type": "git",
"url": "https://github.com/PropelAuth/express"
},
"version": "2.1.23",
"license": "MIT",
"keywords": [
"auth",
"express",
"user"
],
"dependencies": {
"@propelauth/node": "^2.1.23"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/nock": "^11.1.0",
"@types/uuid": "^8.3.1",
"express": "^4.17.1",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"jsonwebtoken": "^9.0.0",
"nock": "^13.1.2",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.3.3",
"rimraf": "^3.0.2",
"rollup": "^2.52.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run test && npm run build:types && npm run build:js",
"test": "jest --silent",
"prepublishOnly": "npm run build"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"jest": {
"testMatch": [
"**/test/*.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest"
},
"setupFiles": [
"./setupJest.js"
]
}
}