-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "monob",
"version": "0.0.3",
"author": "Asaf Shitrit",
"description": "A monorepo build tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [
"build",
"tool",
"optimized",
"monorepo"
],
"scripts": {
"dev": "tsc -w -p ./tsconfig.json && nodemon dist/index.js",
"start": "ts-node src/index.ts",
"watch": "tsc -w",
"build": "tsc",
"test": "npm run test:typescript && npm run test:jest",
"test:jest": "jest",
"test:typescript": "tsc --noEmit -p src/ && tsc --noEmit",
"prepare": "npm run build",
"clean": "rm -rf ./dist/*"
},
"bin": "./dist/index.js",
"dependencies": {
"args": "5.0.1",
"ms": "2.1.3",
"glob": "7.1.6",
"joi": "17.3.0"
},
"devDependencies": {
"ts-node": "9.0.0",
"@babel/core": "7.11.6",
"@babel/types": "7.12.6",
"@babel/preset-env": "7.12.1",
"@babel/preset-typescript": "7.10.4",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@types/joi": "13.0.8",
"@types/jest": "22.2.3",
"@types/glob": "7.1.3",
"@types/args": "3.0.0",
"@types/cosmiconfig": "6.0.0",
"typescript": "3.4.3",
"prettier": "2.1.2",
"jest": "26.4.2"
}
}