-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.22 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/create",
"version": "5.0.3",
"description": "Idempotently initialize Architect projects",
"main": "src/index.js",
"bin": {
"arc-create": "src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/create.git"
},
"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 PORT=6666 tape 'test/unit/**/*-test.js' | tap-arc",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
},
"license": "Apache-2.0",
"dependencies": {
"@architect/inventory": "~4.0.5",
"@architect/utils": "~4.0.6",
"chalk": "4.1.2",
"lambda-runtimes": "~2.0.2",
"minimist": "~1.2.8"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"cross-env": "~7.0.3",
"eslint": "~9.1.1",
"fs-extra": "~11.2.0",
"nyc": "~15.1.0",
"proxyquire": "^2.1.3",
"tap-arc": "^1.2.2",
"tape": "~5.7.5"
}
}