-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
68 lines (68 loc) · 1.83 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
66
67
68
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"docs",
"test-projects/*"
],
"scripts": {
"lint": "eslint --no-eslintrc -c .eslintrc.js **/*.js",
"version": "node scripts/index-versions.js",
"prepare-links": "node scripts/prepare-links.js",
"lerna-version": "lerna version --no-private",
"lerna-publish": "lerna publish from-git",
"lerna-publish-next": "lerna publish from-git --pre-dist-tag next",
"test-local": "jest -w 1",
"test": "jest --coverage"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 240000,
"globalSetup": "<rootDir>/scripts/testGlobalSetup.js",
"globalTeardown": "<rootDir>/scripts/testGlobalTeardown.js",
"setupFiles": [
"<rootDir>/scripts/testSetup.js"
],
"setupFilesAfterEnv": [
"<rootDir>/scripts/testSetupAfterEnv.js",
"expect-puppeteer"
],
"watchPathIgnorePatterns": [
"<rootDir>/test-projects",
"<rootDir>/.jest-projects"
],
"testPathIgnorePatterns": [
"helpers",
"/node_modules/"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/.jest-projects/**",
"!**/test-projects/**",
"!**/coverage/**",
"!<rootDir>/packages/generator-chisel/lib/commands/create/creators/*/template/**/*.js"
]
},
"devDependencies": {
"conventional-changelog": "^3.1.21",
"eslint": "^7.2.0",
"execa": "^4.0.2",
"expect-puppeteer": "^4.4.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"jest": "^26.1.0",
"jest-environment-puppeteer": "^4.4.0",
"lerna": "^3.22.0",
"lerna-changelog": "^1.0.1",
"node-eval": "^2.0.0",
"prettier": "^2.0.5",
"random-js": "^2.1.0",
"stream-to-promise": "^3.0.0",
"supertest": "^4.0.2"
},
"optionalDependencies": {
"puppeteer": "^5.2.1"
}
}