This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
85 lines (85 loc) · 2.44 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
{
"name": "@microsoft/azure-iot-ux-fluent-controls",
"version": "8.0.8",
"description": "Azure IoT UX Fluent Controls",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "nyc mocha --opts ./mocha.opts",
"tslint": "tslint './lib/**/*.ts{,x}' --exclude './lib/**/*.d.ts'",
"sasslint": "sass-lint -c .sass-lint.yml 'lib/**/*.scss' -v -q",
"prepublishOnly": "npm run tslint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/Azure/iot-ux-fluent-controls.git"
},
"homepage": "https://github.com/Azure/iot-ux-fluent-controls#readme",
"bugs": "https://github.com/Azure/iot-ux-fluent-controls/issues",
"author": "Azure IoT",
"license": "MIT",
"engines": {
"node": ">=12"
},
"dependencies": {
"@microsoft/azure-iot-ux-fluent-css": "8.0.6",
"classnames": "^2.2.5"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/classnames": "^2.2.3",
"@types/enzyme": "^2.8.9",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.52",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/sinon": "^5.0.5",
"chai": "^4.2.0",
"chai-enzyme": "^0.8.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": ">=6.8.0",
"ignore-styles": "^5.0.1",
"jsdom": "^15.2.1",
"json-loader": "^0.5.7",
"mocha": "^7.1.1",
"node-sass": "^4.14.1",
"nyc": "^14.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.3.2",
"sass-lint": "^1.13.1",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.9",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-react": "^4.1.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x"
},
"nyc": {
"include": [
"lib/**/*.ts",
"lib/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}