-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "runtime-picker",
"version": "0.3.3",
"description": "Pick a runtime like you would microwave popcorn",
"main": "build/index.js",
"scripts": {
"test": "cross-env NODE_PATH=./src yarn mocha --opts .mocha.opts --recursive test",
"test:coverage": "yarn nyc --extension=.jsx --exclude=test/ yarn test",
"coverage": "yarn nyc --extension=.jsx --exclude=test/ report --reporter=text-lcov | yarn coveralls",
"lint": "yarn eslint --ext .js --ext .jsx ./src",
"start": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloverinteractive/runtime-picker.git"
},
"keywords": [
"runtime"
],
"author": "Enrique Vidal",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloverinteractive/runtime-picker/issues"
},
"homepage": "https://github.com/cloverinteractive/runtime-picker#readme",
"peerDependencies": {
"react": "16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.75.0",
"jsdom": "^11.11.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"react": "16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "16.2.1",
"sinon": "^6.0.1",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {},
"engines": {
"node": "10.*.*",
"npm": "6.*.*",
"yarn": "1.*.*"
}
}