-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 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
{
"name": "docs.begin.com",
"version": "2.9.24",
"description": "https://docs.begin.com",
"scripts": {
"deploy": "./scripts/deploy",
"dev": "NODE_ENV=testing PORT=4445 ARC_LOCAL=1 npx sandbox",
"icons": "./scripts/icons",
"linkcheck": "find ./src/shared/docs/en -name \\*.md -exec npx markdown-link-check -c ./config.json {} \\;",
"lint": "eslint src --ignore-pattern node_modules --fix",
"push-test": "npm run spellcheck && NODE_ENV=testing ARC_CONTRIB=yas ARC_LOCAL=yas tape 'test/**/*-test.js' | tap-spec",
"spellcheck": "npx spellchecker --config ./scripts/spellcheckerrc.json",
"start": "NODE_ENV=staging PORT=4445 ARC_LOCAL=1 npx sandbox",
"test": "npm run lint && npm run spellcheck && PORT=6666 NODE_ENV=testing SESSION_TABLE_NAME=jwe tape test/*-test.js test/**/*-test.js | tap-spec"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/smallwins/docs.begin.com/issues"
},
"homepage": "https://github.com/smallwins/docs.begin.com#readme",
"devDependencies": {
"@architect/arc-plugin-node-prune": "^1.0.1",
"@architect/architect": "^5.9.37",
"@architect/spellcheck-dictionary": "git+https://github.com/architect/spellcheck-dictionary.git",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"spellchecker-cli": "^4.8.0",
"svg-symbols": "^1.0.5",
"svgo": "^1.3.2",
"tap-spec": "^5.0.0",
"tape": "^5.3.0",
"tiny-json-http": "^7.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run push-test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}