-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 939 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 939 Bytes
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": "scoparella.engine",
"version": "1.7.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist/ && tsc",
"build-dev": "rimraf dist/ && tsc",
"test": "npm run build-dev && jest",
"acceptance": "npm run build-dev && jest --config=jest.config.acceptance.js"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@types/fs-extra": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^14.0.14",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^8.10.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@scoparella/dtos": "git+https://github.com/garrypas/scoparella.dtos.git#v1.1.2",
"@types/uuid": "^8.0.0",
"uuid": "^8.2.0"
},
"types": "src/index.ts",
"files": [
"README.md",
"dist",
"src",
"!*/**.spec.ts",
"!*/**.spec.js",
"!acceptance",
"tsconfig.json"
]
}