-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "wksp",
"version": "0.3.1",
"main": "dist/index.js",
"source": "./src/index.ts",
"repository": "https://github.com/andrew-colman/wksp",
"author": {
"name": "Andrew Colman"
},
"keywords": [
"wksp",
"monorepo management",
"yarn",
"workspaces",
"workspace"
],
"license": "MIT",
"bin": {
"wksp": "dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup --config rollup.config.js",
"dev": "sucrase-node ./src/index.ts ",
"test": "jest ",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.2",
"jest": "^27.0.6",
"rollup": "^2.56.2",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"sucrase": "^3.20.1",
"ts-jest": "^27.0.4",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"dependencies": {
"commander": "^8.1.0",
"execa": "^5.1.1",
"jsonc-require": "^1.0.1",
"nanov": "^1.0.2"
}
}