forked from Azure/iot-ux-fluent-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.29 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
{
"name": "@microsoft/azure-iot-ux-fluent-controls",
"version": "7.0.0-alpha.25",
"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",
"docs": "styleguidist server",
"docs:build": "styleguidist build",
"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": ">=8"
},
"dependencies": {
"@microsoft/azure-iot-ux-fluent-css": "^7.0.0-alpha.26",
"classnames": "^2.2.5",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/classnames": "^2.2.3",
"@types/enzyme": "^2.8.9",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.26",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.3",
"@types/sinon": "^5.0.5",
"@types/styled-components": "^4.1.12",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.2.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.0",
"chai": "^4.2.0",
"chai-enzyme": "^0.8.0",
"copyfiles": "^1.2.0",
"css-loader": "^0.28.5",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"html-webpack-plugin": "^2.30.1",
"ignore-styles": "^5.0.1",
"jsdom": "^12.2.0",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"node-sass": "^4.8.3",
"nyc": "^13.1.0",
"phantomjs-polyfill-object-assign": "0.0.2",
"prop-types": "^15.6.1",
"react": "^16.8.1",
"react-docgen-typescript": "^1.3.0",
"react-dom": "^16.8.1",
"react-hot-loader": "^4.1.0",
"react-styleguidist": "^7.0.6",
"react-test-renderer": "^16.3.2",
"sass-lint": "^1.11.1",
"sass-loader": "^6.0.6",
"sinon": "^7.0.0",
"sinon-chai": "^3.2.0",
"source-map-loader": "^0.2.1",
"source-map-support": "^0.5.9",
"style-loader": "^0.18.2",
"ts-loader": "^3.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.7.0",
"tslint-react": "^3.2.0",
"typescript": "^2.9.0",
"webpack": "^3.8.1"
},
"peerDependencies": {
"prop-types": "^15.6.1",
"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
}
}