-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.9 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.9 KB
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
{
"name": "@genese/mapper",
"version": "2.1.0",
"author": {
"name": "Gilles Fabre",
"url": "https://github.com/gillesfabre34"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build_and_test": "tsc && ts-node src/debug/test-engine/start-tests.ts",
"clear": "ts-node -P src/debug/tsconfig.debug.json ./src/debug/project/clear-debug.ts",
"init_files": "ts-node -P src/debug/tsconfig.debug.json src/debug/start-init.debug.ts",
"reinstall-genese-core": "npm uninstall @genese/core && npm i @genese/core",
"start": "npm run build && node dist/index.js",
"publish_package": "npm run build && npm publish",
"republish_init": "cd ./src/init && tsc && cd ../.. && npm unpublish -f && npm publish",
"republish_package": "rm -rf dist && cd src && tsc && cd ./init && tsc && cd ../.. && npm unpublish -f && npm publish",
"debug": "ts-node src/debug/project/start.ts",
"test": "npm run init_files && ts-node -P src/debug/tsconfig.debug.json src/debug/test-engine/start-tests-with-passed.ts",
"test-fails": "ts-node -P src/debug/tsconfig.debug.json src/debug/test-engine/start-tests-without-passed.ts",
"test-type-checking": "ts-node src/debug/test-engine/test-type-checking.ts"
},
"dependencies": {
"@genese/core": "^1.0.0-alpha.1",
"@types/node": "^14.14.33",
"app-root-path": "^3.0.0",
"chalk": "^4.1.0",
"fs-extra": "^9.1.0",
"path": "0.12.7",
"stream": "0.0.2",
"ts-morph": "^10.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"keywords": [
"genese",
"mapper",
"validator",
"generic mapper",
"data validation"
],
"types": "dist/index.d.ts",
"browser": {
"fs": false,
"os": false,
"path": false
}
}