-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 796 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
{
"name": "@architect/parser",
"version": "8.0.1",
"description": "Architect Parser accepts plaintext, JSON, or YAML .arc manifests and returns a plain JavaScript Object",
"main": "./src/index.js",
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "node --test --test-reporter=spec",
"_coverage": "npm run coverage -- --test-coverage-exclude=test/*.js",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/architect/parser.git"
},
"author": "Brian LeRoux",
"license": "Apache-2.0",
"files": [
"src/*"
],
"devDependencies": {
"@architect/eslint-config": "~3.0.0",
"eslint": "~9.36.0"
}
}