-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 3.32 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
{
"name": "@cashstar/react-timezone",
"version": "2.0.6",
"description": "A timezone picker widget in React",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:js",
"build:js": "babel src/ --out-dir lib/ --ignore '**/*.test.js'",
"clean": "rimraf lib",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"test": "npm run lint && npm run test:jest",
"test:jest": "jest",
"test:coverage": "jest --coverage",
"test:nocache": "jest --no-cache",
"test:security": "snyk test",
"test:watch": "jest --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"storybook": "start-storybook -p 9001 -c .storybook",
"gh-pages:clean": "rimraf _gh-pages",
"gh-pages:build": "$(npm bin)/build-storybook -o _gh-pages",
"gh-pages:publish": "$(npm bin)/git-directory-deploy --directory _gh-pages",
"gh-pages": "npm run gh-pages:clean && npm run gh-pages:build && npm run gh-pages:publish",
"tag": "git tag v$npm_package_version",
"version:patch": "npm --no-git-tag-version version patch",
"version:minor": "npm --no-git-tag-version version minor",
"version:major": "npm --no-git-tag-version version major",
"preversion": "npm run test",
"postversion": "git commit package.json package-lock.json -m \"Version $npm_package_version\" && npm run tag && git push && git push --tags && npm publish --registry=https://registry.npmjs.org/",
"prepublishOnly": "npm run build",
"postpublish": "npm run gh-pages",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erin-doyle/react-timezone.git"
},
"keywords": [
"timezone"
],
"author": "Carlo DiCelico, Erin Doyle",
"license": "ISC",
"bugs": {
"url": "https://github.com/erin-doyle/react-timezone/issues"
},
"homepage": "https://github.com/erin-doyle/react-timezone#readme",
"dependencies": {
"classnames": "^2.2.5",
"coveralls": "^3.0.3",
"git-directory-deploy": "^1.5.1",
"invariant": "^2.2.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-autocomplete": "^1.7.2",
"react-dom": "^16.8.6",
"snyk": "^1.231.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@storybook/addon-a11y": "^5.1.9",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-eslint": "^7.2.3",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"jest": "^24.8.0",
"jsdom": "^11.2.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.1",
"semver": "^5.4.1"
},
"peerDependencies": {
"moment": "^2.18.0",
"moment-timezone": "^0.5.0",
"react": "^15.0.0 || ^16.1.0",
"react-dom": "^15.0.0 || ^16.1.0"
},
"snyk": true
}