-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 984 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 984 Bytes
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
{
"name": "@architect/create",
"version": "7.0.1",
"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": "node --test 'test/unit/**/*-test.js'",
"test:integration": "node test/integration/run.js",
"coverage": "node --test --experimental-test-coverage 'test/unit/**/*-test.js'",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=22"
},
"license": "Apache-2.0",
"dependencies": {
"@architect/inventory": "~6.0.0",
"@architect/utils": "~6.0.0"
},
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"eslint": "~9.39.1"
}
}