-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.82 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
60
{
"name": "@architect/hydrate",
"version": "4.0.8",
"description": "Architect dependency hydrator and shared file manager",
"main": "src/index.js",
"bin": {
"arc-hydrate": "src/cli.js"
},
"scripts": {
"test": "npm run lint && npm run test:integration && npm run coverage",
"test:nolint": "npm run test:integration && npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-tests.js' | tap-arc",
"test:integration": "cross-env tape 'test/integration/**/*-tests.js' | tap-arc",
"test:integration:fast": "cross-env tape 'test/integration/symlink/**/*-tests.js' 'test/integration/*-tests.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC",
"vendor": "cd src/actions/autoinstall/python/py/ && vendoring sync && zip -r9 vendor.zip ./vendor"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/hydrate.git"
},
"keywords": [],
"author": "Brian LeRoux <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/architect/hydrate/issues"
},
"homepage": "https://github.com/architect/hydrate#readme",
"files": [
"src/*"
],
"dependencies": {
"@architect/inventory": "~4.0.5",
"@architect/utils": "~4.0.6",
"acorn-loose": "~8.4.0",
"chalk": "4.1.2",
"esquery": "~1.6.0",
"glob": "10.4.5",
"minimist": "~1.2.8",
"run-series": "~1.1.9",
"symlink-or-copy": "~1.3.1"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"cross-env": "~7.0.3",
"eslint": "~9.7.0",
"mock-tmp": "~0.0.4",
"nyc": "^15.1.0",
"pnpm": "~8.15.9",
"proxyquire": "~2.1.3",
"tap-arc": "~1.2.2",
"tape": "~5.8.1",
"yarn": "~1.22.22"
}
}