-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "mqtt-react",
"version": "0.0.2",
"description": "Connecting MQQT to React Components",
"main": "./lib/index.js",
"scripts": {
"build:lib": "NODE_ENV=development babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack --config=webpack.config.js src/index.js dist/mqtt-react.js",
"build:umd:min": "cross-env NODE_ENV=production webpack --config=webpack.config.js src/index.js dist/mqtt-react.min.js",
"build": "npm run build:lib && npm run build:umd",
"test": "cross-env NODE_ENV=test ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KeKs0r/mqtt-react.git"
},
"keywords": [
"react",
"mqtt"
],
"author": "Marc Höffl <[email protected]>",
"license": "MIT",
"ava": {
"files": [
"./test/*.spec.js"
],
"failFast": true,
"tap": true,
"verbose": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"dependencies": {
"mqtt": "^2.7.0"
},
"peerDependencies": {
"react": "^15.5.0",
"react-dom": "^15.5.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"ava": "^0.19.1",
"ava-spec": "^1.1.0",
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^4.0.0",
"enzyme": "^2.8.2",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"prop-types": "^15.5.8",
"react-test-renderer": "^15.5.4",
"sinon": "^2.2.0",
"webpack": "^2.4.1"
}
}