forked from architect/arc.codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.63 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
{
"name": "@architect/arc.codes",
"version": "3.7.5",
"repository": {
"type": "git",
"url": "https://github.com/architect/arc.codes"
},
"license": "Apache-2.0",
"scripts": {
"dist": "./scripts/dist.sh",
"spellcheck": "npx spellchecker --config ./scripts/spellcheckerrc.json",
"link-checker": "node ./scripts/link-checker.mjs | tap-arc",
"lint": "eslint src --fix",
"start": "sandbox",
"test:unit:frontend": "tape -r esm 'test/frontend/**/*.js' | tap-arc",
"test:unit:backend": "tape 'test/backend/**/*.js' | tap-arc",
"test": "npm run spellcheck && npm run lint && npm run test:unit:frontend && npm run test:unit:backend"
},
"dependencies": {
"@architect/asap": "^5.0.1",
"@architect/functions": "^5.0.4",
"@architect/inventory": "^3.0.0",
"@architect/package": "^8.0.3",
"@architect/plugin-node-prune": "^2.0.2",
"@architect/syntaxes": "github:architect/syntaxes#v1.2.1",
"esm": "^3.2.25",
"highlight.js": "^11.4.0",
"markdown-it": "^12.3.2",
"markdown-it-external-anchor": "^1.0.0",
"markdown-it-toc-and-anchor": "github:macdonst/markdown-it-toc-and-anchor",
"slugify": "^1.6.5",
"tiny-frontmatter": "^1.0.0"
},
"devDependencies": {
"@architect/architect": "^10.1.0",
"@architect/eslint-config": "^2.0.1",
"@architect/spellcheck-dictionary": "git+https://github.com/architect/spellcheck-dictionary.git",
"eslint": "^8.10.0",
"linkinator": "^3.0.3",
"spellchecker-cli": "^4.8.1",
"tap-arc": "^0.1.2",
"tape": "^5.5.2",
"tiny-json-http": "^7.3.1"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}