forked from arshaw/shelljs-live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 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
{
"name": "shelljs-live",
"version": "0.0.5",
"repository": "https://github.com/arshaw/shelljs-live.git",
"author": "Adam Shaw",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./promise": "./dist/promise.js"
},
"files": [
"/dist",
"/promise.*"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn run preflight && tsc",
"watch": "yarn run preflight && tsc --watch",
"test": "yarn run preflight && ./test.sh",
"ci": "yarn run clean && yarn run build && yarn run test && echo 'Ready for release'",
"preflight": "check-node-version --node 16"
},
"peerDependencies": {
"shelljs": "^0.8.4"
},
"dependencies": {
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/shelljs": "^0.8.9",
"check-node-version": "^4.2.1",
"shelljs": "^0.8.4",
"typescript": "^4.4.3",
"yargs": "^17.1.1"
},
"packageManager": "[email protected]"
}