-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 2.31 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
{
"name": "toolkit",
"private": true,
"version": "1.0.0",
"description": "toolkit for serverless-devs",
"scripts": {
"install:all": "pnpm install",
"format": "prettier --write packages/**/src/",
"format-check": "prettier --check packages/**/src/",
"clean": "pnpm run -r clean && rimraf node_modules",
"build": "pnpm run -r build",
"test": "jest --testTimeout 10000",
"test:registry": "jest --testTimeout 60000 packages/registry --watchAll",
"test:manager": "jest --testTimeout 10000 packages/component-manager --watchAll",
"test:logger": "ts-node packages/logger/__tests__/logger",
"test:credential": "jest --testTimeout 10000 packages/credential --watchAll",
"test:zip": "jest --testTimeout 10000 packages/zip --watchAll",
"test:download": "jest --testTimeout 10000 packages/download",
"test:ignore-walk": "jest --testTimeout 10000 packages/ignore-walk --watchAll",
"test:progress-bar": "jest --testTimeout 10000 packages/progress-bar --watchAll",
"test:load-application": "jest --testTimeout 10000 packages/load-application",
"test:parse-spec": "jest --testTimeout 10000 packages/parse-spec --watchAll",
"test:load-component": "jest --testTimeout 10000 packages/load-component --watchAll",
"test:engine": "jest --testTimeout 30000 packages/engine --watchAll",
"test:engine:coverage": "jest --coverage --testTimeout 30000 packages/engine --collectCoverageFrom=packages/engine/src/**/*.ts --coverageDirectory coverage/engine",
"test:utils": "jest --testTimeout 10000 packages/utils --watchAll",
"test:diff": "jest --testTimeout 10000 packages/diff --watchAll",
"test:orm": "jest --testTimeout 10000 packages/orm --watchAll",
"ci": "jest --testTimeout 30000 packages/engine",
"prepare": "husky install"
},
"author": "xsahxl",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.195",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.1",
"dotenv": "^16.2.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"inquirer": "^8.2.4",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}