-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.86 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
53
54
55
56
57
58
59
{
"name": "the-orchard",
"version": "0.4.0",
"description": "A CLI tool to generate the markup for including dependencies",
"main": "cjs/index.js",
"bin": {
"orchard": "cjs/cli.entry.js"
},
"types": "./types/index.d.ts",
"scripts": {
"build": "scripts/build",
"clean": "rm -rf ./cjs",
"demo": "npm run build && cd demo && npm start",
"docs": "npx documentation build ./src/index.js -f md > ./docs/API.md",
"postversion": "git push --follow-tags",
"pretest": "scripts/check-dependencies && eslint src/",
"preversion": "scripts/preversion --commit-docs",
"start": "npm run build && cd demo && npm ci && npm start",
"start:depcache": "npm run build && cd demo && npm ci && npm run depcache",
"test": "scripts/test",
"test:live": "nodemon -x 'scripts/test' -w js,json --watch src/",
"update": "npx npm-check -uE",
"types": "npx --package=typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meltwater/the-orchard.git"
},
"keywords": [],
"author": "Team Legion <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meltwater/the-orchard/issues"
},
"homepage": "https://github.com/meltwater/the-orchard#readme",
"devDependencies": {
"@babel/cli": "7.24.7",
"@babel/core": "7.24.7",
"@babel/plugin-transform-modules-commonjs": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/register": "7.24.6",
"eslint": "8.46.0",
"figlet": "1.7.0",
"jasmine": "5.1.0",
"nodemon": "3.1.4"
},
"dependencies": {
"@meltwater/coerce": "0.4.0",
"@npmcli/arborist": "7.5.4",
"argument-contracts": "1.2.3",
"colors": "1.4.0",
"js-yaml": "4.1.0",
"semver": "7.6.2",
"sywac": "1.3.0"
},
"engines": {
"node": ">= 16.0.0"
}
}