-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "@architect/utils",
"version": "4.0.6",
"description": "Common utility functions",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/architect/utils.git"
},
"scripts": {
"test:nolint": "npm run test:unit:updater && npm run test:unit",
"test": "npm run lint && npm run test:unit:updater && npm run test:unit",
"test:unit": "cross-env tape 'test/**/*-test.js' | tap-arc",
"test:unit:updater": "cross-env tape test/updater/test.js | tap-arc",
"lint": "npx eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
},
"author": "Brian LeRoux <b@brian.io>",
"license": "Apache-2.0",
"dependencies": {
"@aws-lite/client": "^0.21.1",
"chalk": "4.1.2",
"glob": "~10.3.12",
"path-sort": "~0.1.0",
"restore-cursor": "3.1.0",
"run-series": "~1.1.9",
"run-waterfall": "~1.1.7",
"sha": "~3.0.0"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"@architect/inventory": "~4.0.4",
"cross-env": "~7.0.3",
"eslint": "~9.1.1",
"proxyquire": "~2.1.3",
"sinon": "~17.0.1",
"tap-arc": "1.1.0",
"tape": "~5.7.5"
}
}