forked from entria/entria-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.44 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
{
"name": "@entria/utils",
"version": "0.0.10",
"description": "Entria utils",
"keywords": [
"react",
"entria",
"utils"
],
"license": "ISC",
"homepage": "https://github.com/entria/entria-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/entria/entria-utils"
},
"main": "lib/index.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"date-fns": "^1.28.5",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.48.0",
"gh-pages": "^1.0.0",
"jest": "^20.0.4",
"lint-staged": "^4.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.4.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"dependencies": {},
"peerDependencies": {
"date-fns": ">=1.28.5",
"prop-types": ">=15.5.10",
"react": ">=0.14",
"react-dom": ">=0.14"
},
"jest": {
"setupFiles": [
"<rootDir>/test/mocks/localStorage.js"
]
},
"lint-staged": {
"src/**/*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 100",
"yarn lint",
"git add"
]
},
"pre-commit": "lint:staged",
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"test": "jest --coverage --runInBand --forceExit",
"test:watch": "jest --watch --coverage",
"lint": "eslint --ext js src",
"lint:staged": "lint-staged",
"start": "start-storybook -p 6006 -c storybook",
"demo:build": "build-storybook -c storybook",
"demo:gh-pages": "gh-pages -d storybook-static/",
"demo:publish": "npm run demo:build && npm run demo:gh-pages",
"check": "npm run lint && npm run test",
"release:patch": "npm run check && npm version patch && git push --follow-tags && npm publish --access public",
"release:minor": "npm run check && npm version minor && git push --follow-tags && npm publish --access public",
"release:major": "npm run check && npm version major && git push --follow-tags && npm publish --access public"
}
}