-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2 KB
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
{
"name": "@groceristar/select-component",
"version": "1.0.9",
"description": "select fields, food projects",
"main": "dist/index.js",
"module": "dist/index.es.js",
"private": false,
"scripts": {
"bundle": "rollup -c",
"build": "babel src -d dist",
"build:test": "shx rm -rf && babel src -d dist",
"#prepare": "yarn clean",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"#prepublish": "yarn clean && yarn build",
"test": "CI=test && jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"lint": "standard",
"code-fix": "standard --fix",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"devDependencies": {
"@babel/cli": "7.6.3",
"@babel/core": "7.6.3",
"@babel/node": "7.6.3",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"babel-plugin-module-resolver": "3.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"jest": "24.9.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"regenerator-runtime": "0.13.3",
"rollup": "1.27.5",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"shx": "0.3.2",
"standard": "14.1.0"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"antd": "^3.11.2",
"react-select": "^3.0.0",
"uuid": "^3.3.2",
"snyk": "^1.192.4"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GroceriStar/select-component.git"
},
"keywords": [
"react",
"components",
"ingredients"
],
"author": "Arthur Tkachenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/GroceriStar/select-component/issues"
},
"homepage": "https://github.com/GroceriStar/select-component#readme",
"snyk": true
}