-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 2.04 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
{
"name": "cnpm-rapid-monorepo",
"version": "0.0.0",
"description": "cnpm rapid cli",
"workspaces": [
"packages/*",
"bindings/*"
],
"scripts": {
"init": "npm run init:test && npm run build",
"init:test": "npm run prepare-test --workspaces --if-present",
"init:ci": "npm run build && npm run init:test",
"dl:nydusd": "bash scripts/download_nydusd.sh",
"cp:binary": "node scripts/prepareBootstrap.js",
"build": "npm run build:binary && npm run build:binding && npm run dl:nydusd && npm run cp:binary",
"build:binary": "cargo build --package nydus-rs --release && cargo build --package rapid_deamon --release",
"build:binding": "npm run build-release --workspace @cnpmjs/binding",
"clean": "rm -rf mochawesome-reports coverage",
"lint": "eslint integration/**/*.test.js packages/cli/bin packages/cli/lib packages/cli/test/**/*.test.js",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test-local",
"test-local": "NODE_ENV=test mocha",
"test:rust": "cargo test --workspace --exclude tokio-tar",
"test:integration": "NODE_ENV=test mocha --config ./.mocharc-integration.yml",
"cov": "nyc npm run test",
"ci": "npm run init:ci && npm run cov",
"ci:integration": "npm run init:ci && npm run test:integration",
"ci:rust": "npm run init:ci && npm run test:rust",
"version": "lerna version --conventional-commits --sign-git-commit --sign-git-tag --no-push --no-private"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.0.0",
"@types/mocha": "^8.2.0",
"@types/node": "^18.16.3",
"coffee": "^5.4.0",
"eslint": "^8.24.0",
"eslint-config-egg": "^12.0.0",
"espower-typescript": "^9.0.2",
"intelli-espower-loader": "^1.0.1",
"lerna": "^7.1.4",
"mm": "^2.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"power-assert": "^1.6.1",
"test-exclude": "^6.0.0"
},
"homepage": "https://github.com/cnpm/rapid",
"repository": {
"type": "git",
"url": "[email protected]:cnpm/rapid.git"
},
"engines": {
"node": ">=14.19.1"
}
}