forked from microsoft/fast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.28 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
{
"name": "@microsoft/fast-dna",
"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,
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/fast-dna.git"
},
"bugs": {
"url": "https://github.com/Microsoft/fast-dna/issues/new/choose"
},
"scripts": {
"docs:build": "node build/documentation/generate-typedocs.js",
"docs:build:dry-run": "node build/documentation/generate-typedocs.js --dry-run",
"docs:build:verbose": "node build/documentation/generate-typedocs.js --verbose",
"docs:build:readme": "node build/documentation/copy-package-readme.js",
"docs:build:api": "node build/documentation/generate-typedocs.js",
"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",
"test": "npm run tslint && npm run unit-tests",
"tslint": "tslint -c ./tslint.json 'build/**/*.ts'",
"tslint:fix": "tslint -c ./tslint.json --fix 'build/**/*.ts'",
"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": true,
"collectCoverageFrom": [
"build/helpers/*.ts"
],
"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__/*"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js"
],
"moduleDirectories": [
"node_modules"
]
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@microsoft/fast-tslint-rules": "^3.0.0",
"@types/jest": "^24.0.11",
"@types/lodash-es": "^4.17.0",
"@types/node": "^9.4.7",
"babel-core": "^6.26.0",
"babel-jest": "^24.5.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": "^1.1.2",
"jest": "^24.5.0",
"lerna": "3.11.1",
"lint-staged": "^7.3.0",
"markdown-it": "^8.4.1",
"prettier": "1.14.3",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.27",
"typescript": "3.3.3",
"yargs": "^11.0.0"
},
"dependencies": {
"saucelabs": "^1.5.0",
"selenium-webdriver": "^3.6.0"
}
}