-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 716 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 716 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
{
"name": "unconditional",
"version": "0.0.0",
"description": "Unconditional Coding",
"main": "index.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"start": "ts-node index.ts"
},
"author": "Giovanni Gardusi",
"license": "ISC",
"devDependencies": {
"@types/node": "^13.7.4",
"@types/uuid": "^7.0.3",
"module-alias": "^2.2.2",
"typescript": "^3.8.2"
},
"dependencies": {
"decimal.js": "^10.2.0",
"reflect-metadata": "^0.1.13"
},
"_moduleAliases": {
"@app": "dist/src",
"@test": "dist/test"
},
"mocha": {
"require": [
"reflect-metadata",
"module-alias/register"
],
"recursive": true,
"spec": "dist/test"
}
}