-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@begin/deploy",
"license": "Apache-2.0",
"version": "0.22.5",
"bin": {
"begin": "src/index.js"
},
"main": "src/index.js",
"files": [
"src",
"client-ids.json"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "npm run lint && npm run coverage && npm run test:integration && npm run test:integration:slow",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc -v",
"test:integration": "cross-env NODE_ENV=testing tape 'test/integration/**/*-test.js' | tap-arc -v",
"test:integration:slow": "cross-env NODE_ENV=testing tape 'test/integration/**/*-test-slow.js' | tap-arc -v",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"create:client-ids": "node --env-file .env scripts/create-client-ids.js"
},
"dependencies": {
"@architect/inventory": "4.0.5",
"@architect/parser": "7.0.1",
"@architect/utils": "4.0.6",
"@begin/api": "1.9.4",
"@colors/colors": "1.6.0",
"@enhance/cli": "1.2.0",
"@enhance/starter-project": "8.0.0",
"enquirer": "2.4.1",
"minimist": "1.2.8",
"node-machine-id": "1.1.12",
"restore-cursor": "3.1.0",
"strip-ansi": "6.0.1",
"tiny-json-http": "7.5.1",
"tmp": "0.2.3",
"update-notifier-cjs": "5.1.6",
"ws": "8.17.1"
},
"devDependencies": {
"@architect/eslint-config": "3.0.0-RC.0",
"@architect/plugin-node-prune": "2.1.0-RC.0",
"cross-env": "~7.0.3",
"eslint": "~8.57.0",
"fs-extra": "~11.2.0",
"nyc": "~17.0.0",
"proxyquire": "~2.1.3",
"string-argv": "~0.3.2",
"tap-arc": "~1.2.2",
"tape": "~5.8.1"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"rules": {
"global-require": "off"
},
"ignorePatterns": [
"scratch/",
"test/tmp/"
]
}
}