-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 880 Bytes
/
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": "permission-to-rest",
"version": "0.0.2-alpha",
"description": "Simple authorization for restful services",
"scripts": {
"tsc": "rimraf ./lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc",
"test": "jest"
},
"keywords": [],
"author": "shunkica",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "*",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node"
}
}