This repository has been archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
119 lines (119 loc) · 3.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@microsoft/fast",
"description": "An unopinionated system of components, development tools, and utilities used à la carte or as a suite to build enterprise-grade websites and applications.",
"version": "1.8.0",
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"license": "MIT",
"private": true,
"workspaces": {
"packages": ["packages/**/*", "sites/fast-color-explorer", "sites/fast-component-explorer", "sites/fast-creator", "sites/site-utilities", "sites/fast-tooling-examples", "sites/fast-website"],
"nohoist": ["**/react-syntax-highlighter", "**/@types/chai", "**/@types/jest", "**/@types/karma", "**/@types/mocha"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/fast.git"
},
"bugs": {
"url": "https://github.com/Microsoft/fast/issues/new/choose"
},
"scripts": {
"docs:build": "node build/documentation/generate-typedocs.js",
"docs:build:api": "node build/documentation/generate-typedocs.js",
"docs:build:dry-run": "node build/documentation/generate-typedocs.js --dry-run",
"docs:build:readme": "node build/documentation/copy-package-readme.js",
"docs:build:verbose": "node build/documentation/generate-typedocs.js --verbose",
"integration-tests:alpha": "node build/testing/sauce-labs/test-browsers.js alpha",
"integration-tests:beta": "node build/testing/sauce-labs/test-browsers.js beta",
"integration-tests:release": "node build/testing/sauce-labs/test-browsers.js release",
"prepare": "lerna run prepare",
"test": "yarn eslint && yarn unit-tests",
"unit-tests": "jest --maxWorkers=4",
"unit-tests:watch": "jest --watch",
"watch": "tsc -p ./tsconfig.json -w --preserveWatchOutput"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"build/helpers/*.ts"
],
"coverageReporters": [
"json",
[
"lcov", {"projectRoot": "."}
]
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
},
"testURL": "http://localhost",
"transform": {
"^.+\\.ts?$": "ts-jest",
"^.+\\.js?$": "babel-jest"
},
"transformIgnorePatterns": [
"!<rootDir>/node_modules/lodash-es",
"node_modules/jss-*",
"node_modules/css-vendor"
],
"testPathIgnorePatterns": [
"packages/",
"build/helpers/__tests__/*",
"build/helpers/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"lint-staged": {
"*.{ts,tsx,js,html}": [
"prettier --write"
]
},
"resolutions": {
"@types/react": "*"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/lodash-es": "^4.17.0",
"@types/node": "^9.4.7",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.4.2",
"docusaurus-init": "^1.11.0",
"dotenv": "^6.0.0",
"eyes.selenium": "3.6.2",
"glob": "^7.1.2",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lerna": "^3.20.2",
"lint-staged": "^10.1.2",
"markdown-it": "^8.4.1",
"prettier": "2.0.2",
"rimraf": "^2.6.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.9.0",
"yargs": "^11.0.0"
},
"dependencies": {
"saucelabs": "^1.5.0",
"selenium-webdriver": "^3.6.0"
}
}